diff options
author | Patrick Simianer <p@simianer.de> | 2014-06-24 22:37:57 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-06-24 22:37:57 +0200 |
commit | 8d640ba5434de99dc6a9b832b4a0b716523101df (patch) | |
tree | 1558c4ae48539e5b541c867a0a9d854ed5035825 /.tmux.CLuster.conf | |
parent | 69b7b1dccd2b1f4249beb6f89d42629d599f8326 (diff) | |
parent | 47f3320e241d45884f3e1f177e7987d83c3ebfb0 (diff) |
Merge branch 'master' of github.com:pks/dotfiles
Diffstat (limited to '.tmux.CLuster.conf')
-rw-r--r-- | .tmux.CLuster.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.tmux.CLuster.conf b/.tmux.CLuster.conf new file mode 100644 index 0000000..6364e4e --- /dev/null +++ b/.tmux.CLuster.conf @@ -0,0 +1,36 @@ +# 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-fg white +set -g status-bg colour234 +set -g window-status-activity-attr bold +set -g pane-border-fg colour245 +set -g pane-active-border-fg cyan +set -g message-fg colour16 +set -g message-bg colour221 +set -g message-attr bold +set -g status-left '' +set -g status-right '#[underline]#[fg=colour235,bg=colour14,bold] #H:#S' +set-option -g set-titles on +set -g set-titles-string '#T -- #W' +set-window-option -g automatic-rename on +set-option -g status-interval 1 +set-option -g status-utf8 on +set-window-option -g utf8 on + |