1

Neovim: Remove sneak as it breaks flash's <;> binding

This commit is contained in:
2024-10-10 14:21:46 +02:00
parent 1cebc65893
commit 3c8fd110f5
2 changed files with 3 additions and 8 deletions

View File

@ -1302,12 +1302,6 @@ in {
lazy = false;
};
sneak = {
name = "sneak";
pkg = pkgs.vimPlugins.vim-sneak;
lazy = false;
};
_plenary = {
name = "plenary"; # For telescope
pkg = pkgs.vimPlugins.plenary-nvim;
@ -1717,7 +1711,6 @@ in {
rainbow-delimiters # Bracket/Paren colorization
rustaceanvim # Rust integration
sleuth # Heuristically set indent depth
sneak # Like f/F but for two characters
telescope # Option picker frontend
todo-comments # Highlight TODOs
toggleterm # Integrated terminal

View File

@ -6,7 +6,9 @@
};
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"
];