diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-03-26 16:55:40 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-03-26 16:55:40 -0400 |
commit | e081df3d7725756609e42326623fa0c01638f15c (patch) | |
tree | c467d2a778a411e7b9619d37aab1d561125997e7 /.tmux.conf | |
parent | Actually install fonts (diff) |
Further tmux customizations
Diffstat (limited to '')
-rw-r--r-- | .tmux.conf | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -9,6 +9,8 @@ bind C-k confirm kill-window bind k confirm kill-window bind K confirm kill-server bind C-K confirm kill-server +bind t send-prefix +bind C-t send-prefix # Enable the mouse setw -g mode-mouse on @@ -22,3 +24,16 @@ set -g base-index 0 set-option -g set-titles on # [session:window-name host] command set-option -g set-titles-string '[#S:#I #H] #W' + +# Resize when possible +setw -g aggressive-resize on + +# emacs key bindings +set -g mode-keys emacs +set -g status-keys emacs + +# active window colour in status +set -g window-status-current-bg white +set -g window-status-current-fg magenta +set -g window-status-bell-bg red +set -g window-status-bell-fg yellow |