2012-09-22 11:16:36 -07:00
|
|
|
# improve colors
|
2011-09-06 16:24:12 -04:00
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
|
2012-09-22 11:16:36 -07:00
|
|
|
# enable copy-paste http://goo.gl/DN82E
|
|
|
|
# enable RubyMotion http://goo.gl/WDlCy
|
|
|
|
set -g default-command "reattach-to-user-namespace -l zsh"
|
|
|
|
|
2011-08-11 12:16:32 -04:00
|
|
|
# act like vim
|
|
|
|
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
|
|
|
|
bind-key -r C-h select-window -t :-
|
|
|
|
bind-key -r C-l select-window -t :+
|
|
|
|
|
|
|
|
# act like GNU screen
|
|
|
|
unbind C-b
|
|
|
|
set -g prefix C-a
|
2012-11-07 17:08:57 -08:00
|
|
|
|
|
|
|
# soften status bar color from harsh green to light gray
|
|
|
|
set -g status-bg '#666666'
|
|
|
|
set -g status-fg '#aaaaaa'
|
|
|
|
|
|
|
|
# remove administrative debris (session name, hostname, time) in status bar
|
|
|
|
set -g status-left ''
|
|
|
|
set -g status-right ''
|