Remap tmux prefix key. C-b is too useful for vim.
David Blume

David Blume commited on 2020-06-24 17:28:07
Showing 1 changed files, with 5 additions and 2 deletions.

... ...
@@ -1,3 +1,6 @@
1
+set -g prefix C-a
2
+unbind C-b
3
+bind C-a send-prefix
1 4
 set -g status-keys vi
2 5
 set -g status-fg white
3 6
 set -g status-bg colour235
... ...
@@ -7,5 +10,5 @@ set -g status-justify centre
7 10
 set -g status-right '#[fg=green]%m/%d %H:%M#[default]'
8 11
 setw -g mode-keys vi
9 12
 setw -g automatic-rename off
10
-setw -g window-status-current-format '#[fg=yellow]#I:#F#T#[default]'
11
-setw -g window-status-format '#I:#F#W'
13
+setw -g window-status-current-format '#[fg=yellow]#I:#F:#T#[default]'
14
+setw -g window-status-format '#I:#F:#W'
12 15