-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
48 lines (37 loc) · 1.39 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
# Turn on truecolor in order to apply neovim theme inside tmux.
set-option -g default-terminal "screen-256color"
set-option -sa terminal-features ',xterm-256color:RGB'
# Change the prefix key
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Fix warnings listed by neovim :checkhealth
set-option -sg escape-time 10
set-option -g focus-events on
# Enable mouse mode
set-option -g mouse on
# Enable clipboard
# set-option -g set-clipboard on # Not required if using xclip
set -s copy-command 'xclip -selection clipboard'
# Enable vim mode
set-option -g mode-keys vi
# Catppuccin theme
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_status_modules_right "application 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"
# Move status bar to the top
set-option -g status-position top
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'catppuccin/tmux'
# Initialize tmux plugin manager (keep this line at the very bottom of
# tmux.conf)
run '~/.tmux/plugins/tpm/tpm'