disable nix-index and use ripgrep for fzf

This commit is contained in:
willemml 2023-03-05 11:33:11 -08:00
parent 50096b95ce
commit be1216e31d
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@
fzf = {
enable = true;
defaultCommand = "${pkgs.fd}/bin/fd . ${config.home.homeDirectory}";
defaultCommand = "${pkgs.ripgrep}/bin/rg --files --hidden --no-ignore-vcs";
enableZshIntegration = true;
};

View file

@ -18,7 +18,7 @@
};
programs.nix-index.enable = true;
programs.nix-index.enable = false;
programs.zsh.enable = true;
programs.zsh.enableBashCompletion = true;