Skip to content

Instantly share code, notes, and snippets.

@Charl13
Last active June 21, 2021 10:11
Show Gist options
  • Save Charl13/429996d635aff4a3bceb1ecb821e0727 to your computer and use it in GitHub Desktop.
Save Charl13/429996d635aff4a3bceb1ecb821e0727 to your computer and use it in GitHub Desktop.
.tmux.conf
set -g prefix C-b
bind C-b send-prefix
bind-key h split-window -h
bind-key v split-window -v
# VIM key bindings.
set-window-option -g mode-keys vi
unbind-key -T copy-mode-vi v
bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/default/blue'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment