diff --git a/config/config.nix b/config/config.nix index a460798..ac2ec5a 100644 --- a/config/config.nix +++ b/config/config.nix @@ -23,6 +23,7 @@ clipboard.register = "unnamedplus"; globals.mapleader = " "; + globals.maplocalleader = "_"; autoCmd = [ { diff --git a/config/plugins.nix b/config/plugins.nix index 0e984df..513ed75 100644 --- a/config/plugins.nix +++ b/config/plugins.nix @@ -29,6 +29,20 @@ grug-far = { enable = true; + settings = { + debounceMs = 1000; + engine = "ripgrep"; + engines = { + ripgrep = { + path = "rg"; + showReplaceDiff = true; + }; + }; + maxSearchMatches = 2000; + maxWorkers = 8; + minSearchChars = 1; + normalModeSearch = false; + }; }; conform-nvim = {