blob: c1e6bdb149103215beb4d5f0c38587260710ed45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
programs.fzf = {
enable = true;
enableBashIntegration = true;
defaultOptions = [
"--height 40%"
"--layout reverse"
"--color bw"
"--no-scrollbar"
"--no-separator"
"--no-unicode"
"--pointer '>'"
];
defaultCommand = "rg -L --files";
changeDirWidgetCommand = "fd --type d";
};
}
|