Skip to content

Instantly share code, notes, and snippets.

@nchapon
Created November 23, 2015 22:06
Show Gist options
  • Save nchapon/cad2441191883faafb65 to your computer and use it in GitHub Desktop.
Save nchapon/cad2441191883faafb65 to your computer and use it in GitHub Desktop.
# Bindings de keys
set -g prefix C-a
# Windows navigation with Maj + Arrows
bind -n S-Left previous-window
bind -n S-Right next-window
# Pane navigation with Alt + Arrows
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Window Splitting vertical | and horizontal -
unbind %
bind | split-window -h
bind - split-window -v
# History limit
set-option history-limit 16000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment