diff --git a/home/modules/neovim/default.nix b/home/modules/neovim/default.nix index 74866689..50e4875b 100644 --- a/home/modules/neovim/default.nix +++ b/home/modules/neovim/default.nix @@ -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 diff --git a/home/modules/neovim/mappings.nix b/home/modules/neovim/mappings.nix index d663fe45..363ede7f 100644 --- a/home/modules/neovim/mappings.nix +++ b/home/modules/neovim/mappings.nix @@ -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" ];