aboutsummaryrefslogtreecommitdiff
path: root/programs/fzf.nix
blob: 92614f6196ce1e2e92950fa6f663821b8dfc31ac (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";
  };
}