aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.tmux.conf19
1 files changed, 9 insertions, 10 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 4739600..a001984 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1,3 +1,7 @@
1unbind C-b
2set -g prefix `
3bind ` send-prefix
4
1set -g default-terminal "screen-256color" 5set -g default-terminal "screen-256color"
2set-window-option -g automatic-rename on 6set-window-option -g automatic-rename on
3set-window-option -g mode-keys vi 7set-window-option -g mode-keys vi
@@ -5,16 +9,6 @@ set-option -g set-titles on
5set-option -sg escape-time 10 9set-option -sg escape-time 10
6set-option -g mouse off 10set-option -g mouse off
7 11
8if-shell "uname | grep -q Linux" {
9 set -g prefix M-x
10 bind M-x send-prefix
11}
12
13if-shell "uname | grep -q Darwin" {
14 set -g prefix M-z
15 bind M-z send-prefix
16}
17
18set -g base-index 1 12set -g base-index 1
19set-window-option -g pane-base-index 1 13set-window-option -g pane-base-index 1
20set -g renumber-windows on 14set -g renumber-windows on
@@ -28,3 +22,8 @@ bind-key Down select-pane -D
28bind-key Left select-pane -L 22bind-key Left select-pane -L
29bind-key Right select-pane -R 23bind-key Right select-pane -R
30 24
25bind-key -r S-Up resize-pane -U 5
26bind-key -r S-Down resize-pane -D 5
27bind-key -r S-Left resize-pane -L 5
28bind-key -r S-Right resize-pane -R 5
29