-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_tmux.conf
44 lines (34 loc) · 1.24 KB
/
dot_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
# reload hotkey
unbind r
bind r source-file ~/.tmux.conf
# change windows index
set -g base-index 1
setw -g pane-base-index 1
# change leader key
unbind C-b
set -g prefix C-a
set -g mode-keys vi
# plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'catppuccin/tmux'
set -g @plugin 'jimeh/tmuxifier'
# theme
set-option -g status-position top
set -g @catppuccin_flavour 'mocha'
set -g @catppuccin_window_left_separator "░▒▓█"
set -g @catppuccin_window_right_separator "█▓▒░"
set -g @catppuccin_window_middle_separator " █"
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_current_text "#W"
set -g @catppuccin_window_default_text "#W"
set -g @catppuccin_status_modules_right "gitmux directory user session"
set -g @catppuccin_status_left_separator "░▒▓█"
set -g @catppuccin_status_right_separator "█▓▒░"
set -g @catppuccin_status_right_separator_inverse "no"
set -g @catppuccin_status_fill "icon"
set -g @catppuccin_status_connect_separator "no"
set -g @catppuccin_directory_text "#{s|$HOME|~|;s|dev|δ|:pane_current_path}"
# init tmp (keep this line at the very bottom)
run '~/.tmux/plugins/tpm/tpm'