-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux-dark.conf
39 lines (34 loc) · 1.29 KB
/
.tmux-dark.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
29
30
31
32
33
34
35
36
37
38
39
# BEFORE STARTING tmux:
# - Create tmux-256color-italic.terminfo
# ```
# tmux-256color-italic|screen with 256 colors and italic,
# sitm=\E[3m, ritm=\E[23m,
# use=screen-256color,
# ```
# - Run `tic tmux-256color-italic.terminfo`
# set -g default-terminal 'tmux-256color-italic'
# set -ga terminal-overrides ',*256col*:Tc:sitm=\E[3m'
set -g default-terminal 'screen-256color'
set -ga terminal-overrides ',*256col*:Tc'
set -g mouse on
set -g mode-keys vi
set -g @scroll-speed-num-lines-per-scroll 1
set-window-option -g allow-rename off
set-option -g status-position bottom
# source ~/.tmux/themes/papercolor-light.conf
# source ~/.tmux/themes/papercolor-dark.conf
# source ~/.tmux/themes/solarized-light.conf
source ~/.tmux/themes/solarized-dark.conf
# source ~/.tmux/themes/gruvbox-dark.conf
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'NHDaly/tmux-better-mouse-mode'
set -g @plugin 'christoomey/vim-tmux-navigator'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'