Skip to content

Instantly share code, notes, and snippets.

@rogerhub
Created February 13, 2015 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerhub/ca5dc82348f68b8e1291 to your computer and use it in GitHub Desktop.
Save rogerhub/ca5dc82348f68b8e1291 to your computer and use it in GitHub Desktop.
tmux config
# https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf
set-option -g status-bg colour235 #base02
set-option -g status-fg colour136 #yellow
set-option -g status-attr default
# set window split
bind-key | split-window -h
bind-key - split-window
set-option -g prefix C-a
# move around panes with hjkl, as one would in vim after pressing ctrl-w
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
set-option -g pane-border-fg default
set-option -g pane-active-border-bg default
set-option -g pane-active-border-fg default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment