dotfiles/.tmux.conf
michener 532e676884 Update
git-svn-id: http://photonzero.com/dotfiles/trunk@81 23f722f6-122a-0410-8cef-c75bd312dd78
2011-03-16 00:29:21 +00:00

31 lines
759 B
Bash

set -g prefix C-a
unbind C-b
bind-key C-a last-window
bind-key a send-prefix
bind-key j select-pane -t:-
bind-key k select-pane -t:+
bind-key h select-pane -t:.+
bind-key l select-pane -t:.-
bind-key C-n next-window
bind-key C-p previous-window
set -g set-titles off
set -g default-terminal xterm-256color
setw -g mode-keys vi
setw -g utf8 on
new -d
# Status Bar
set -g status-bg black
set -g status-fg white
set -g status-interval 1
set -g status-left '#[fg=green]#H#[default]'
set -g status-left-length 20
set -g status-right '#[fg=cyan,bold]%Y-%m-%d %H:%M:%S#[default]'
# Notifying if other windows has activities
setw -g monitor-activity on
set -g visual-activity on
# Highlighting the active window in status bar
setw -g window-status-current-bg red