mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 13:22:56 +00:00
14 lines
260 B
Nix
14 lines
260 B
Nix
|
{ pkgs, dsl, ... }: {
|
||
|
|
||
|
plugins = [ pkgs.vimPlugins.toggleterm-nvim ];
|
||
|
|
||
|
use.toggleterm.setup = dsl.callWith {
|
||
|
open_mapping = dsl.rawLua "[[<c-\\>]]";
|
||
|
hide_numbers = true;
|
||
|
direction = "float";
|
||
|
};
|
||
|
|
||
|
lua = builtins.readFile ./toggleterm.lua;
|
||
|
|
||
|
}
|