aboutsummaryrefslogtreecommitdiff
path: root/programs/fzf.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-12-26 08:12:34 +0000
committerAkshay <[email protected]>2021-12-26 08:12:34 +0000
commitdb6e371719b7ad80b9ed0610fe709e85d5a5a815 (patch)
treec3b5feb2b471386e608feb4046e4c2c38c68cd24 /programs/fzf.nix
parent621c630b684f6624dc3cb269257a9cfa4110dded (diff)
re-enable fzf
Diffstat (limited to 'programs/fzf.nix')
-rw-r--r--programs/fzf.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/programs/fzf.nix b/programs/fzf.nix
index b02a07c..92614f6 100644
--- a/programs/fzf.nix
+++ b/programs/fzf.nix
@@ -1,7 +1,9 @@
1{ 1{
2 enable = true; 2 programs.fzf = {
3 enableBashIntegration = true; 3 enable = true;
4 defaultOptions = ["--height 40%" "--layout=reverse" "--color=bw"]; 4 enableBashIntegration = true;
5 defaultCommand = "rg -L --files"; 5 defaultOptions = [ "--height 40%" "--layout=reverse" "--color=bw" ];
6 changeDirWidgetCommand = "find . -type d"; 6 defaultCommand = "rg -L --files";
7 changeDirWidgetCommand = "fd --type d";
8 };
7} 9}