From 3c8fd110f5bb9a552c78a821769948b87b9b9394 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 10 Oct 2024 14:21:46 +0200 Subject: [PATCH] Neovim: Remove sneak as it breaks flash's <;> binding --- home/modules/neovim/default.nix | 7 ------- home/modules/neovim/mappings.nix | 4 +++- 2 files changed, 3 insertions(+), 8 deletions(-) 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" ];