-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
51 lines (49 loc) · 1.63 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
41
42
43
44
45
46
47
48
49
50
51
set-option -g mouse on
set-option -g prefix2 C-s
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
set -g base-index 1
set -g pane-base-index 1
unbind '"'
bind '-' splitw -v -c
unbind %
bind '\' splitw -h -c
setw -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-pipe-and-cancel pbcopy
bind < swap-pane -D
bind > swap-pane -U
#select pane up/down/left/right
bind-key k select-pane -U
bind-key j select-pane -D
bind-key h select-pane -L
bind-key l select-pane -R
#adjust pane size
#bind -r U resizep -U 10 # upward
#bind -r D resizep -D 10 # upward
#bind -r L resizep -L 10 # upward
#bind -r R resizep -R 10 # upward
#change layout
bind 'n' next-layout
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
#set -g @plugin 'erikw/tmux-powerline'
set -g @plugin 'dracula/tmux'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin '[email protected]:user/plugin'
# set -g @plugin '[email protected]:user/plugin'
set -g @dracula-show-right-sep
set -g @dracula-show-left-sep
set -g @dracula-show-powerline true
set -g @dracula-show-left-icon 🤡
set -g @dracula-left-icon-padding 1
set -g @dracula-show-empty-plugins false
set -g @dracula-network-bandwidth eth0
set -g @dracula-network-bandwidth-interval 0
set -g @dracula-show-flags true
set -g @dracula-battery-label "❤❤❤"
set -g @dracula-plugins "git battery cpu-usage ram-usage time"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'