feat: switch from silver searcher to ripgrep

This commit is contained in:
Felix Schröter 2020-01-10 15:48:37 +01:00 committed by Felix Schroeter
parent 0344e3f622
commit 1ca1091f5f

View file

@ -54,14 +54,14 @@ in
home.packages = with pkgs; [
fzf
silver-searcher # ag
ripgrep
nodejs-12_x
# haskellPackages.ghcide
];
home.sessionVariables = {
EDITOR = "vim";
FZF_DEFAULT_COMMAND = ''ag -g ""'';
FZF_DEFAULT_COMMAND = "rg --files --hidden";
};
programs.neovim = {