aboutsummaryrefslogtreecommitdiff
path: root/programs/fzf.nix
blob: f6b7f55e4420d4bdbb8afa40815f3a5cb066246f (plain)
1
2
3
4
5
6
7
8
9
{
  programs.fzf = {
    enable = true;
    enableBashIntegration = true;
    defaultOptions = [ "--height 40%" "--layout reverse" "--color bw" ];
    defaultCommand = "rg -L --files";
    changeDirWidgetCommand = "fd --type d";
  };
}