diff --git a/home-manager/modules/common.nix b/home-manager/modules/common.nix index 666765e3..f3d11d34 100644 --- a/home-manager/modules/common.nix +++ b/home-manager/modules/common.nix @@ -94,6 +94,7 @@ in LC_ALL = "en_GB.UTF-8"; LC_CTYPE = "en_GB.UTF-8"; PULUMI_SKIP_UPDATE_CHECK = "true"; + RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config"; }; programs.bat.enable = true; @@ -236,6 +237,11 @@ in home.sessionPath = [ "$HOME/.config/bin" ]; + xdg.configFile."ripgrep/config".text = '' + --follow + --smart-case + ''; + xdg.configFile.bin = { source = ../../bin; recursive = true;