aboutsummaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-12-28 14:28:53 +0000
committerAkshay <[email protected]>2021-12-28 14:28:53 +0000
commit416c02270fe715b03d86d7faab82c67a858466d7 (patch)
tree9d4bb3d61ecc4dc8f90757ca216663d10b7072cc /programs
parent3b8a007e27c19b3840d6377cb3dab5764696d96c (diff)
remove rofi
Diffstat (limited to 'programs')
-rw-r--r--programs/default.nix1
-rw-r--r--programs/fzf.nix2
-rw-r--r--programs/readline.nix2
3 files changed, 3 insertions, 2 deletions
diff --git a/programs/default.nix b/programs/default.nix
index 3175c64..8157c8a 100644
--- a/programs/default.nix
+++ b/programs/default.nix
@@ -49,5 +49,6 @@
49 enableBashIntegration = true; 49 enableBashIntegration = true;
50 }; 50 };
51 gpg.enable = true; 51 gpg.enable = true;
52 info.enable = true;
52 }; 53 };
53} 54}
diff --git a/programs/fzf.nix b/programs/fzf.nix
index 92614f6..f6b7f55 100644
--- a/programs/fzf.nix
+++ b/programs/fzf.nix
@@ -2,7 +2,7 @@
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 = [ "--height 40%" "--layout reverse" "--color bw" ];
6 defaultCommand = "rg -L --files"; 6 defaultCommand = "rg -L --files";
7 changeDirWidgetCommand = "fd --type d"; 7 changeDirWidgetCommand = "fd --type d";
8 }; 8 };
diff --git a/programs/readline.nix b/programs/readline.nix
index e7b7b33..8afdd82 100644
--- a/programs/readline.nix
+++ b/programs/readline.nix
@@ -7,7 +7,7 @@
7 programs.readline = { 7 programs.readline = {
8 enable = true; 8 enable = true;
9 bindings = { 9 bindings = {
10 "\\C-o" = ''tmux-fzf\n''; 10 "\\C-o" = ''"tmux-fzf\n"'';
11 "\\t" = "menu-complete"; 11 "\\t" = "menu-complete";
12 "\\e[Z" = "menu-complete-backward"; 12 "\\e[Z" = "menu-complete-backward";
13 }; 13 };