Neovim: Remove sneak as it breaks flash's <;> binding
This commit is contained in:
@ -1302,12 +1302,6 @@ in {
|
|||||||
lazy = false;
|
lazy = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
sneak = {
|
|
||||||
name = "sneak";
|
|
||||||
pkg = pkgs.vimPlugins.vim-sneak;
|
|
||||||
lazy = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
_plenary = {
|
_plenary = {
|
||||||
name = "plenary"; # For telescope
|
name = "plenary"; # For telescope
|
||||||
pkg = pkgs.vimPlugins.plenary-nvim;
|
pkg = pkgs.vimPlugins.plenary-nvim;
|
||||||
@ -1717,7 +1711,6 @@ in {
|
|||||||
rainbow-delimiters # Bracket/Paren colorization
|
rainbow-delimiters # Bracket/Paren colorization
|
||||||
rustaceanvim # Rust integration
|
rustaceanvim # Rust integration
|
||||||
sleuth # Heuristically set indent depth
|
sleuth # Heuristically set indent depth
|
||||||
sneak # Like f/F but for two characters
|
|
||||||
telescope # Option picker frontend
|
telescope # Option picker frontend
|
||||||
todo-comments # Highlight TODOs
|
todo-comments # Highlight TODOs
|
||||||
toggleterm # Integrated terminal
|
toggleterm # Integrated terminal
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
disableMappings = [
|
disableMappings = [
|
||||||
# I only use f and F together with flash.nvim and s and S with sneak
|
# I only use f/F with flash
|
||||||
|
"s"
|
||||||
|
"S"
|
||||||
"t"
|
"t"
|
||||||
"T"
|
"T"
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user