Created
December 14, 2017 07:53
-
-
Save Genzer/89600a89cc1438dbfe053442f914ac01 to your computer and use it in GitHub Desktop.
Genzer's tmux.conf
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
unbind C-b | |
set -g prefix ` | |
bind ` send-prefix | |
# PREFIX \: Create a new vertial pane. | |
bind \ split-window -h | |
# PREFIX -: Create a new horizontal pane. | |
bind - split-window -v | |
set-option -g allow-rename off | |
bind -r H select-window -t :- | |
bind -r J select-window -t :+ | |
bind-key -n C-S-Left swap-window -t -1 | |
bind-key -n C-S-Right swap-window -t 1 | |
setw -g mode-keys vi | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
run '$HOME/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment