Skip to content

Instantly share code, notes, and snippets.

@karampok
Last active August 29, 2015 14:23
Show Gist options
  • Save karampok/b11542ac25af98939418 to your computer and use it in GitHub Desktop.
Save karampok/b11542ac25af98939418 to your computer and use it in GitHub Desktop.
bind _ split-window -v
bind | split-window -h
set -g base-index 1
set-option -g allow-rename off
set-window-option -g window-status-current-bg blue
set-window-option -g window-status-current-fg white
# confirm before killing a window or the server
bind-key K confirm kill-server
bind q killp
# Set window notifications
setw -g monitor-activity on
set -g visual-activity on
#set-option -g status-keys vi
# use the vim motion keys to move between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind - resize-pane -D 1
bind + resize-pane -U 1
bind < resize-pane -L 1
bind > resize-pane -R 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment