Skip to content

Instantly share code, notes, and snippets.

@lucachr
Created September 17, 2017 15:57
Show Gist options
  • Save lucachr/5d0c5250fa8313786a17fa5e553a3f34 to your computer and use it in GitHub Desktop.
Save lucachr/5d0c5250fa8313786a17fa5e553a3f34 to your computer and use it in GitHub Desktop.
Tmux configuration file
# utf8 is on
set -g utf8 on
set -g status-utf8 on
# address vim mode switching delay (https://superuser.com/a/252717/65504)
set -s escape-time 0
# focus events enabled for terminals that support them
set -g focus-events on
# super useful when using "grouped sessions" and multi-monitor setup
setw -g aggressive-resize on
set-option -g xterm-keys on
set -g default-terminal xterm-256color
set -g mouse on
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-yank'
# 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