Skip to content

Instantly share code, notes, and snippets.

@t404
Created February 8, 2021 10:18
Show Gist options
  • Save t404/67662e7c93defeb9d6c0c610acb10c9c to your computer and use it in GitHub Desktop.
Save t404/67662e7c93defeb9d6c0c610acb10c9c to your computer and use it in GitHub Desktop.
.tmux.conf #tmux
setw -g mode-keys vi
set -g history-limit 100000
bind-key C-b last-window
bind -r h select-pane -L
bind -r l select-pane -R
bind -r j select-pane -D
bind -r k select-pane -U
bind -r H resize-pane -L 3
bind -r J resize-pane -D 3
bind -r K resize-pane -U 3
bind -r L resize-pane -R 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment