mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-01-07 01:59:13 +00:00
neovim: make better-escape better
This commit is contained in:
parent
69100ba2a5
commit
cf36f563b5
2 changed files with 41 additions and 4 deletions
41
home/modules/tui/neovim/plugins/better-escape.nix
Normal file
41
home/modules/tui/neovim/plugins/better-escape.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ ... }: {
|
||||
programs.nixvim.plugins.better-escape = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_mappings = true;
|
||||
mappings = {
|
||||
c = {
|
||||
k = {
|
||||
j = "<Esc>";
|
||||
k = "<Esc>";
|
||||
};
|
||||
};
|
||||
i = {
|
||||
k = {
|
||||
j = "<Esc>";
|
||||
k = "<Esc>";
|
||||
};
|
||||
};
|
||||
s = {
|
||||
k = {
|
||||
j = "<Esc>";
|
||||
k = "<Esc>";
|
||||
};
|
||||
};
|
||||
t = {
|
||||
k = {
|
||||
j = "<Esc>";
|
||||
k = "<Esc>";
|
||||
};
|
||||
};
|
||||
v = {
|
||||
k = {
|
||||
j = "<Esc>";
|
||||
k = "<Esc>";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
|
@ -30,15 +30,11 @@
|
|||
|
||||
plugins = {
|
||||
web-devicons.enable = true;
|
||||
|
||||
nvim-autopairs.enable = true;
|
||||
|
||||
nvim-colorizer = {
|
||||
enable = true;
|
||||
userDefaultOptions.names = false;
|
||||
};
|
||||
|
||||
better-escape.enable = true;
|
||||
};
|
||||
|
||||
extraPlugins = with pkgs.vimPlugins; [ salt-vim ];
|
||||
|
|
Loading…
Reference in a new issue