Created
May 13, 2014 15:13
-
-
Save bluebanboom/6516fcf73dcc9309f4a0 to your computer and use it in GitHub Desktop.
tmux
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
set-option -g utf8 on | |
set-option -g status-utf8 on | |
unbind '"' | |
bind - splitw -v # | |
unbind % | |
bind | splitw -h # | |
bind k selectp -U # | |
bind j selectp -D # | |
bind h selectp -L # | |
bind l selectp -R # | |
bind ^k resizep -U 10 # | |
bind ^j resizep -D 10 | |
bind ^h resizep -L 10 | |
bind ^l resizep -R 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment