Skip to content

Instantly share code, notes, and snippets.

@Genzer
Created December 14, 2017 07:53
Show Gist options
  • Save Genzer/89600a89cc1438dbfe053442f914ac01 to your computer and use it in GitHub Desktop.
Save Genzer/89600a89cc1438dbfe053442f914ac01 to your computer and use it in GitHub Desktop.
Genzer's tmux.conf
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