-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
29 lines (23 loc) · 934 Bytes
/
.tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Basic configuration
set -g base-index 1
set -gw mode-keys vi
# Plugins
set -g @plugin 'dracula/tmux'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'alexwforsythe/tmux-which-key'
set -g @dracula-show-powerline true
set -g @dracula-show-left-icon session
set -g @dracula-plugins " "
set -g @resurrect-capture-pane-contents 'on'
set -g @resurrect-strategy-vim 'session'
set -g @continuum-restore 'off'
set -g default-terminal "tmux-256color"
set -sa terminal-overrides ",*:Tc"
set -sa terminal-overrides ",*:RGB"
set -sa terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support
set -sa terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # colored underscores
run '~/.tmux/plugins/tpm/tpm'