2020-01-08 20:59:52 +00:00
|
|
|
# Change prefix to ctrl+a
|
2019-10-26 17:05:31 +00:00
|
|
|
unbind C-b
|
|
|
|
set -g prefix C-a
|
|
|
|
|
|
|
|
# List of plugins
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
set -g @plugin 'egel/tmux-gruvbox'
|
|
|
|
|
2019-11-02 07:47:22 +00:00
|
|
|
set -g default-terminal "tmux" # use 'tmux' instead of 'screen-*' to enable italics support per tmux FAQ
|
|
|
|
set-option -ga terminal-overrides ",*256col*:Tc"
|
|
|
|
|
2019-10-26 17:05:31 +00:00
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
2021-12-17 22:12:24 +00:00
|
|
|
|
|
|
|
# Enable mouse
|
|
|
|
set -g mouse on
|