aboutsummaryrefslogtreecommitdiff
path: root/programs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'programs/default.nix')
-rw-r--r--programs/default.nix16
1 files changed, 13 insertions, 3 deletions
diff --git a/programs/default.nix b/programs/default.nix
index 32eaf18..b45f476 100644
--- a/programs/default.nix
+++ b/programs/default.nix
@@ -18,8 +18,10 @@
18 ./neovim.nix 18 ./neovim.nix
19 ./readline.nix 19 ./readline.nix
20 ./rofi.nix 20 ./rofi.nix
21 ./alacritty.nix
21 ./tmux.nix 22 ./tmux.nix
22 ./zathura.nix 23 ./zathura.nix
24 ./fuzzel.nix
23 ]; 25 ];
24 26
25 programs = { 27 programs = {
@@ -53,9 +55,17 @@
53 enable = true; 55 enable = true;
54 enableBashIntegration = true; 56 enableBashIntegration = true;
55 settings = { 57 settings = {
56 imports = [ 58 imports = [
57 "native-16.hjson" 59 "native-16.hjson"
58 ]; 60 ];
61 verbs = [
62 {
63 key = "enter";
64 working_dir = "{root}";
65 execution = ''$EDITOR +{line} {file}'';
66 leave_broot = false;
67 }
68 ];
59 }; 69 };
60 }; 70 };
61 }; 71 };