dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit a99ef555eec2a6e08498cb31506a11e4cd49a7bf
parent e964289b3394a00603bb4a1965cd2c13f0326db5
Author: Chris Bracken <cbracken@shachi.(none)>
Date:   Sat, 20 Oct 2012 21:42:46 -0700

Added tmux conf

Diffstat:
A.tmux.conf | 33+++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+), 0 deletions(-)

diff --git a/.tmux.conf b/.tmux.conf @@ -0,0 +1,33 @@ +# .tmuxrc + +# Use C-a for tmux prefix +set -g prefix C-a +unbind-key C-b +bind-key C-a send-prefix + +# utf8 support +set-window-option -g utf8 on +set-option -g status-utf8 on + +# vi keys +set-window-option -g mode-keys vi +set-option -g status-keys vi +bind C-j previous-window +bind C-k next-window + +# disable mouse +set-window-option -g mode-mouse off +set-option -g mouse-select-pane off + +# status bar +set-option -g status-fg white +set-option -g status-bg default +set-window-option -g window-status-current-attr bold +set-window-option -g window-status-current-fg yellow +set-option -g status-left-length 2 +set-option -g status-left '#[fg=green][ ' +set-option -g status-right-length 35 +set-option -g status-right '#[fg=green]] [ #[fg=black,bright]#h #[fg=green,nobright]] [ #[fg=black,bright]%Y-%m-%d %H:%M #[fg=green,nobright]]' + +set-window-option -g automatic-rename off +set-window-option -g monitor-activity on