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