-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_tmux.conf
More file actions
68 lines (56 loc) · 2.28 KB
/
dot_tmux.conf
File metadata and controls
68 lines (56 loc) · 2.28 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-sidebar'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'b0o/tmux-autoreload'
set -g @plugin 'jaclu/tmux-menus'
set -g @plugin 'jabirali/tmux-tilish'
set -g @plugin 'fcsonline/tmux-thumbs'
set -g @plugin 'roosta/tmux-fuzzback'
unbind C-b
set -g prefix C-t
bind C-t send-prefix
set -g @tilish-prefix C-u
set -g @tilish-default 'main-vertical'
set -g @tilich-dmenu 'on'
bind -T copy-mode-vi v send -X begin-selection
bind '"' split-window -v -c "#{pane_current_path}"
bind '%' split-window -h -c "#{pane_current_path}"
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
bind -n S-Left previous-window
bind -n S-Right next-window
unbind Up
unbind Down
unbind Left
unbind Right
unbind C-Up
unbind C-Down
unbind C-Left
unbind C-Right
set -g mouse on
set -g status off
set -g default-command "zsh -l"
set -sg escape-time 0
set-option -g allow-rename off
#One Dark
set -g message-style "fg=#3e4452,bg=#abb2bf"
set -g message-command-style "fg=#abb2bf,bg=#3e4452"
setw -g window-status-style "fg=#98c379,bg=#282c34"
setw -g window-status-activity-style "fg=#98c379,bg=black"
set -g pane-active-border "fg=#98c379"
set -g pane-border-style "fg=#3e4452"
set -g status-bg "#282c34"
set -g status-justify "left"
set -g status-left-length "100"
set -g status-right-length "100"
set -g status "on"
setw -g window-status-separator ""
set -g status-left "#[fg=#282c34,bg=#98c379,bold] #S #[fg=#98c379,bg=#282c34,nobold,nounderscore,noitalics]"
set -g status-right "#[fg=#3e4452,bg=#282c34,nobold,nounderscore,noitalics]#[fg=#abb2bf,bg=#3e4452] #($TMUX_PLUGIN_MANAGER_PATH/tmux-mem-cpu-load/tmux-mem-cpu-load --interval 2) #[fg=#abb2bf,bg=#3e4452] %Y-%m-%d %H:%M #[fg=#98c379,bg=#3e4452,nobold,nounderscore,noitalics]#[fg=#282c34,bg=#98c379,bold] #h "
setw -g window-status-format "#[fg=#98c379,bg=#282c34] #I #[fg=#98c379,bg=#282c34] #W "
setw -g window-status-current-format "#[fg=#282c34,bg=#3e4452,nobold,nounderscore,noitalics]#[fg=#abb2bf,bg=#3e4452] #I #[fg=#abb2bf,bg=#3e4452] #W #[fg=#3e4452,bg=#282c34,nobold,nounderscore,noitalics]"
run '~/.tmux/plugins/tpm/tpm'