Created
February 8, 2021 10:18
-
-
Save t404/67662e7c93defeb9d6c0c610acb10c9c to your computer and use it in GitHub Desktop.
.tmux.conf #tmux
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
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