aboutsummaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2023-02-01 16:07:39 +0000
committerAkshay <[email protected]>2023-02-01 16:07:39 +0000
commit7df356950a6a6455a562ea6d349b03945e189e46 (patch)
tree9b69006779e1dae6fadd3d09e3601f5c9b1ca90e /programs
parentcec4fcabdab7a1bd137130111e8ee6567686815c (diff)
tweak tmux
Diffstat (limited to 'programs')
-rw-r--r--programs/tmux.nix9
-rw-r--r--programs/zathura.nix2
2 files changed, 5 insertions, 6 deletions
diff --git a/programs/tmux.nix b/programs/tmux.nix
index 15f9a13..c748a60 100644
--- a/programs/tmux.nix
+++ b/programs/tmux.nix
@@ -82,10 +82,7 @@ in
82 setw -g pane-base-index 1 82 setw -g pane-base-index 1
83 83
84 # session jumper 84 # session jumper
85 bind C-j display-popup -E "\ 85 bind-key -n C-j run-shell "tmux-fzf"
86 tmux list-sessions -F '#{session_name}' |\
87 fzf |\
88 xargs tmux switch-client -t"
89 86
90 87
91 # pane binds 88 # pane binds
@@ -101,7 +98,9 @@ in
101 98
102 # window binds 99 # window binds
103 bind -n M-h previous-window 100 bind -n M-h previous-window
104 bind -n M-i next-window 101 bind -n M-i next-window
102 bind -n M-? switch-client -p
103 bind -n M-/ switch-client -n
105 bind-key "{" split-window -h -c "#{pane_current_path}" 104 bind-key "{" split-window -h -c "#{pane_current_path}"
106 bind-key "}" split-window -v -c "#{pane_current_path}" 105 bind-key "}" split-window -v -c "#{pane_current_path}"
107 bind-key s choose-session 106 bind-key s choose-session
diff --git a/programs/zathura.nix b/programs/zathura.nix
index 5e5c8ce..9758c7a 100644
--- a/programs/zathura.nix
+++ b/programs/zathura.nix
@@ -31,7 +31,7 @@ with theme;
31 statusbar-h-padding = "50"; 31 statusbar-h-padding = "50";
32 statusbar-v-padding = "50"; 32 statusbar-v-padding = "50";
33 guioptions = "s"; 33 guioptions = "s";
34 font = "Input 10"; 34 font = "Nerd Input 10";
35 }; 35 };
36 }; 36 };
37} 37}