aboutsummaryrefslogtreecommitdiff
path: root/programs/fzf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'programs/fzf.nix')
-rw-r--r--programs/fzf.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/programs/fzf.nix b/programs/fzf.nix
index f6b7f55..92ee4d0 100644
--- a/programs/fzf.nix
+++ b/programs/fzf.nix
@@ -2,7 +2,13 @@
2 programs.fzf = { 2 programs.fzf = {
3 enable = true; 3 enable = true;
4 enableBashIntegration = true; 4 enableBashIntegration = true;
5 defaultOptions = [ "--height 40%" "--layout reverse" "--color bw" ]; 5 defaultOptions = [
6 "--height 40%"
7 "--layout reverse"
8 "--color bw"
9 "--no-scrollbar"
10 "--no-separator"
11 ];
6 defaultCommand = "rg -L --files"; 12 defaultCommand = "rg -L --files";
7 changeDirWidgetCommand = "fd --type d"; 13 changeDirWidgetCommand = "fd --type d";
8 }; 14 };