Skip to content

Instantly share code, notes, and snippets.

@headStyleColorRed
Created January 28, 2021 12:46
Show Gist options
  • Save headStyleColorRed/8257365abde72b0df86a5cee2bd841d0 to your computer and use it in GitHub Desktop.
Save headStyleColorRed/8257365abde72b0df86a5cee2bd841d0 to your computer and use it in GitHub Desktop.
# Remap prefix from 'C-b' to 'C-w'
unbind C-b
set-option -g prefix C-w
bind-key C-w send-prefix
# split panes using | and -
bind + split-window -h
bind - split-window -v
unbind '"'
unbind %
# Vim like pane navigation
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'dracula/tmux'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment