-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
41 lines (32 loc) · 1.07 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
#FROM DOTBOT
#BINDING
set-option -g prefix C-a
bind-key v split-window -h
bind-key b split-window
## hjkl pane traversal
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Vi copypaste mode
set-window-option -g mode-keys vi
bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
setw -g aggressive-resize on
set -g mouse on
# reload config
bind r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'casonadams/tmux-vi-navigation'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'wfxr/tmux-fzf-url' # prefix + u
set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "git cpu-usage ram-usage network"
set -g @dracula-border-contrast true
set -g @dracula-show-flags true
set -g @dracula-cpu-display-load false
set -g @dracula-show-powerline false
set -g @dracula-show-left-icon session
set -g @dracula-network-colors "pink dark_gray"
run '~/.tmux/plugins/tpm/tpm'