tmux: use catppuccin theme

This commit is contained in:
krolxon 2025-09-10 20:02:00 +05:30
parent 28d704a9c6
commit c7ffe6ea3a
1 changed files with 9 additions and 2 deletions

View File

@ -21,7 +21,7 @@ bind r source-file ~/.config/tmux/tmux.conf;
# setw -g mode-keys vi
set-window-option -g mode-keys vi
bind -T copy-mode-vi v send-keys -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'wl-copy'
# # Remapping movement keys
bind h select-pane -L # Move focus to pane on the left
@ -40,8 +40,15 @@ bind -r C-j resize-pane -D 5
bind -r C-k resize-pane -U 5
bind -r C-l resize-pane -R 5
# TPM
## Setup: git clone https://github.com/tmux-plugins/tpm plugins/tpm
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'fabioluciano/tmux-tokyo-night'
# set -g @plugin 'fabioluciano/tmux-tokyo-night'
# Configure the catppuccin plugin
set -g @catppuccin_flavor "mocha"
set -g @catppuccin_window_status_style "rounded"
set -g @plugin 'catppuccin/tmux'
run '~/.config/tmux/plugins/tpm/tpm'