diff --git a/home/fish.nix b/home/fish.nix index 08bf9a97..5d37d157 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -27,7 +27,6 @@ tree = "eza --all --long --tree"; mv = "mv -i"; cp = "cp -ia"; - rg = "rg --max-columns=2000 --smart-case"; }; shellAbbrs = { diff --git a/home/ripgrep.nix b/home/ripgrep.nix new file mode 100644 index 00000000..50cef07d --- /dev/null +++ b/home/ripgrep.nix @@ -0,0 +1,10 @@ +{ + programs.ripgrep = { + enable = true; + + arguments = [ + "--max-columns=2000" + "--smart-case" + ]; + }; +} diff --git a/modules/shell.nix b/modules/shell.nix index 5d79c2f4..323d07a3 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -21,7 +21,6 @@ in jq fd fzf - ripgrep xh file timg