Skip to content

Instantly share code, notes, and snippets.

@slavniyteo
Created January 22, 2018 05:44
Show Gist options
  • Save slavniyteo/c3ca6f51e1cac0403ece6aa944b3e310 to your computer and use it in GitHub Desktop.
Save slavniyteo/c3ca6f51e1cac0403ece6aa944b3e310 to your computer and use it in GitHub Desktop.
Tmux configuration
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