2020-01-08 22:59:52 +02:00
|
|
|
# Change prefix to ctrl+a
|
2019-10-26 20:05:31 +03: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 09:47:22 +02: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 20:05:31 +03:00
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
2021-12-18 00:12:24 +02:00
|
|
|
|
|
|
|
# Enable mouse
|
|
|
|
set -g mouse on
|