mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
72d15fd983
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
15 lines
458 B
Plaintext
15 lines
458 B
Plaintext
# Change prefix to ctrl+a
|
|
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'
|
|
|
|
set -g default-terminal "tmux" # use 'tmux' instead of 'screen-*' to enable italics support per tmux FAQ
|
|
set-option -ga terminal-overrides ",*256col*:Tc"
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|