Created
January 22, 2018 05:44
-
-
Save slavniyteo/c3ca6f51e1cac0403ece6aa944b3e310 to your computer and use it in GitHub Desktop.
Tmux configuration
This file contains hidden or 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 -g default-terminal "screen-256color" | |
bind-key -r C-h resize-pane -L 5 | |
bind-key -r C-j resize-pane -D 5 | |
bind-key -r C-k resize-pane -U 5 | |
bind-key -r C-l resize-pane -R 5 | |
bind-key -r M-h resize-pane -L | |
bind-key -r M-j resize-pane -D | |
bind-key -r M-k resize-pane -U | |
bind-key -r M-l resize-pane -R | |
bind-key -r h select-pane -L | |
bind-key -r j select-pane -D | |
bind-key -r k select-pane -U | |
bind-key -r l select-pane -R | |
bind-key -r L last-window | |
bind-key -r % split-window -h -c '#{pane_current_path}' | |
bind-key -r '"' split-window -v -c '#{pane_current_path}' | |
bind-key -r C new-window -c '#{pane_current_path}' | |
bind-key -r -n C-] copy-mode | |
bind-key -t emacs-copy -n C-k halfpage-up | |
bind-key -t emacs-copy -n C-j halfpage-down | |
bind-key -t emacs-copy -n k scroll-up | |
bind-key -t emacs-copy -n j scroll-down |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment