Skip to content

Instantly share code, notes, and snippets.

@ejcx
Created March 2, 2019 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ejcx/b631c8511a31eefd8d814ea0f1ff8eb1 to your computer and use it in GitHub Desktop.
Save ejcx/b631c8511a31eefd8d814ea0f1ff8eb1 to your computer and use it in GitHub Desktop.
tmux
set -g default-terminal "xterm-256color"
setw -g xterm-keys on
setw -g mode-keys vi
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment