summaryrefslogtreecommitdiff
path: root/tmux/.tmux/common.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tmux/.tmux/common.conf')
-rw-r--r--tmux/.tmux/common.conf34
1 files changed, 34 insertions, 0 deletions
diff --git a/tmux/.tmux/common.conf b/tmux/.tmux/common.conf
new file mode 100644
index 0000000..5de73ad
--- /dev/null
+++ b/tmux/.tmux/common.conf
@@ -0,0 +1,34 @@
+# act like vim
+setw -g mode-keys vi
+bind h select-pane -L
+bind j select-pane -D
+bind k select-pane -U
+bind l select-pane -R
+bind-key -r C-h select-window -t :-
+bind-key -r C-l select-window -t :+
+
+# act like GNU screen
+unbind C-b
+set -g prefix C-a
+
+# look good
+set -g default-terminal "screen-256color"
+
+# status
+set -g status-left-length 32
+set -g status-right-length 150
+set -g status-left ''
+set -g status-right '#[fg=white,bg=black] #S '
+set-option -g set-titles on
+# #H Hostname of local host
+# #I Current window index
+# #P Current pane index
+# #S Session name
+# #T Current window title
+# #W Current window name
+# ## A literal ‘#’
+set -g set-titles-string '#T -- #W'
+set-window-option -g automatic-rename on
+set-option -g status-interval 1
+set-option -g history-limit 10000
+