Created
July 12, 2016 11:58
-
-
Save BjRo/87cc3bad22a8df208267527c885b37d2 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
# Move around the buffer in vim style | |
setw -g mode-keys vi | |
# Shortcuts | |
bind r source-file ~/.tmux.conf\; display "Reloaded!" #reload configuration | |
bind | split-window -h -c '#{pane_current_path}' #split window horizontally | |
bind - split-window -v -c '#{pane_current_path}' #split window vertically | |
bind h select-pane -L #vim style pane navigation | |
bind j select-pane -D #vim style pane navigation | |
bind k select-pane -U #vim style pane navigation | |
bind l select-pane -R #vim style pane navigation | |
bind -r C-h select-wind -t :- #previous window | |
bind -r C-l select-wind -t :+ #next window | |
bind -r H resize-pane -L 5 #pane resizing | |
bind -r J resize-pane -D 5 #pane resizing | |
bind -r K resize-pane -U 5 #pane resizing | |
bind -r L resize-pane -R 5 #pane resizing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment