sync/tmux.conf
2014-04-19 13:25:29 -04:00

21 lines
499 B
Bash

set -g status-bg black
set -g status-fg white
set -g status-left '#[fg=green]#H'
set-window-option -g window-status-current-bg red
setw -g monitor-activity on
set -g visual-activity on
setw -g automatic-rename on
unbind %
bind | split-window -h
bind - split-window -v
set -g default-terminal "screen-256color"
set-option -g history-limit 10000
set -g prefix C-a
bind C-a send-prefix
unbind C-b
bind-key k select-pane -U
bind-key j select-pane -D
bind-key h select-pane -L
bind-key l select-pane -R