-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux.conf
More file actions
118 lines (98 loc) · 3.32 KB
/
tmux.conf
File metadata and controls
118 lines (98 loc) · 3.32 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# nvim healthcheck recommendations
set-option -sg escape-time 10
set-option -g focus-events on
set-option -sa terminal-features ',xterm-256color:RGB'
# eo recommendations
setw -g mouse on
set -gs default-terminal "screen-256color"
unbind -T copy-mode-vi Enter
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -selection c"
bind -T copy-mode-vi v send -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -selection c"
bind P paste-buffer
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -selection c"
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# switch windows alt+number
bind-key -n M-0 select-window -t 0
bind-key -n M-1 select-window -t 1
bind-key -n M-2 select-window -t 2
bind-key -n M-3 select-window -t 3
bind-key -n M-4 select-window -t 4
bind-key -n M-5 select-window -t 5
bind-key -n M-6 select-window -t 6
bind-key -n M-7 select-window -t 7
bind-key -n M-8 select-window -t 8
bind-key -n M-9 select-window -t 9
# reload conf
bind r source-file ~/.tmux.conf
######################
### DESIGN CHANGES ###
######################
# loud or quiet?
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
set -g bell-action none
# # modes
#setw -g clock-mode-colour colour13
#setw -g mode-style 'fg=colour3 bold'
#
## # panes
#set -g pane-border-style 'fg=colour8'
#set -g pane-active-border-style 'fg=colour5'
#
## statusbar
#set -g status-position bottom
#set -g status-justify left
#set -g status-style 'fg=colour3 dim'
#set -g status-left ''
#set -g status-right '#[fg=colour199] %Y-%m-%d #[fg=colour199 bold] %H:%M:%S '
#set -g status-right-length 50
#set -g status-left-length 20
#
#setw -g window-status-current-style 'fg=colour201 bold'
#setw -g window-status-current-format ' #I#[fg=colour201]:#[fg=colour201]#W#[fg=colour201]#F '
#
#setw -g window-status-style 'fg=colour207'
#setw -g window-status-format ' #I#[fg=colour9]:#[fg=colour5]#W#[fg=colour13]#F '
#
#setw -g window-status-bell-style 'fg=colour8 bg=colour8 bold'
#
## messages
#set -g message-style 'fg=colour3 bold'
# set -g @plugin 'dracula/tmux'
#set -g @dracula-military-time true
#set -g @dracula-show-fahrenheit false
#set -g @dracula-day-month true
#set -g @dracula-show-timezone false
#set -g @dracula-show-powerline true
#set -g @dracula-show-location false
#
#set -g @dracula-ram-usage false
#set -g @dracula-gpu-usage false
#set -g @dracula-cpu-usage false
# load plugin
set -g @plugin 'catppuccin/tmux'
set -g @plugin 'tmux-plugins/tpm'
set -g @catppuccin_window_left_separator "█"
set -g @catppuccin_window_right_separator "█ "
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_middle_separator " █"
set -g @catppuccin_window_default_fill "number"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#{pane_current_path}"
set -g @catppuccin_status_modules "application session date_time"
set -g @catppuccin_status_left_separator ""
set -g @catppuccin_status_right_separator " "
set -g @catppuccin_status_right_separator_inverse "yes"
set -g @catppuccin_status_fill "all"
set -g @catppuccin_status_connect_separator "no"
# Plugin manager
run '~/.tmux/plugins/tpm/tpm'