Created
November 23, 2015 22:06
-
-
Save nchapon/cad2441191883faafb65 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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