# HG changeset patch # User Steve Losh # Date 1289322567 18000 # Node ID dc87b30d17e063ca31086c30e51fe9bdc03e3f9b # Parent d00614f860c80f9964072bd897594a6a698087de tmux: add tmux config diff -r d00614f860c8 -r dc87b30d17e0 .tmux.conf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.tmux.conf Tue Nov 09 12:09:27 2010 -0500 @@ -0,0 +1,32 @@ +# Prefix is something nicer, like C-J +set-option -g prefix C-j +bind C-j send-prefix + +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 + +unbind [ +bind Escape copy-mode +setw -g automatic-rename + +# status bar +set-option -g status-utf8 on +set-option -g status-justify left +set-option -g status-bg black +set-option -g status-fg cyan +set-option -g status-interval 5 +set-option -g status-left-length 20 +set-option -g status-left '#[fg=green]ยป #[fg=black,bold]#T#[fg=green] /#[default]' +set-option -g status-right '#[fg=green] ###S #[fg=black,bold]%R %m-%d#[default]' +set-window-option -g window-status-current-fg white + +# clock +set-window-option -g clock-mode-colour cyan +set-window-option -g clock-mode-style 24 + +# pane borders +set-option -g pane-border-fg white +set-option -g pane-active-border-fg magenta