blob: 94e91f1f56534a2a5369a906bee1ce20810205fd (
plain)
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
|
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
set -g status-interval 1
set -sg escape-time 0
set -g mouse on
set-window-option -g xterm-keys on
bind-key Up select-pane -U
bind-key Down select-pane -D
bind-key Left select-pane -L
bind-key Right select-pane -R
bind -n 'M-Up' select-pane -U
bind -n 'M-Down' select-pane -D
bind -n 'M-Left' select-pane -L
bind -n 'M-Right' select-pane -R
set -g mouse on
set -g renumber-windows on
set -g set-titles off
set -g status-position bottom
set -g status on
set -g default-terminal "xterm-256color"
set -g terminal-overrides "xterm-256color:Tc"
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'xamut/tmux-weather'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'robhurring/tmux-spotify'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tukaloff/tmux-kanso'
set -g @plugin 'tmux-plugins/tmux-cpu'
set -g @plugin 'jamesoff/tmux-loadavg'
# set -g @kanso_flavor "pearl"
set -g @kanso_window_status_style "basic"
set -g @kanso_window_current_text " #W"
set -g @kanso_window_text " #W"
# set -g @kanso_window_current_number_color "#22262D"
run '~/.tmux/plugins/tpm/tpm'
set -g pane-border-status bottom
set -g pane-border-style "fg=#090E13"
set -g pane-active-border-style "fg=#090E13"
|