-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
40 lines (33 loc) · 1.11 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
set -g default-terminal "tmux-256color"
setw -g mode-keys vi
#set -g mouse on
set -g status-position top
set-option -g mouse on
bind-key v split-window -h
bind-key s split-window -v
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
set -g @shell_mode 'vi'
# PLUGINS
set -g @plugin 'tmux-plugins/tpm'
#set -g @plugin 'seebi/tmux-colors-solarized'
#set -g @plugin 'srcery-colors/srcery-tmux'
set -g @plugin 'thoreinstein/gruvbox-tmux'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'christoomey/vim-tmux-navigator'
# set -g @plugin 'tmux-plugins/tmux-copycat'
# set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
set -g @plugin 'tmux-plugins/tmux-resurrect'
run -b '~/.tmux/plugins/tpm/tpm'
set -g @resurrect-capture-pane-contents 'on'
set -g @resurrect-strategy-vim 'session'
set -g @emulate-scroll-for-no-mouse-alternate-buffer "on"
set -g @gruvbox-show-battery false
set -g @gruvbox-show-network false
set -g @gruvbox-show-powerline true
set -g @gruvbox-show-flags true
set -g @gruvbox-cpu-usage true
set -g @gruvbox-ram-usage true