Update tmux config and add correct catpuccin theme settings
This commit is contained in:
parent
8b7c42da39
commit
4d28c03be8
1 changed files with 36 additions and 3 deletions
|
@ -5,10 +5,10 @@ set -g mouse on
|
|||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||
# set -g @plugin 'dreamsofcode-io/catppuccin-tmux'
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
||||
|
||||
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||
set -g @plugin 'egel/tmux-gruvbox'
|
||||
set -g @tmux-gruvbox 'dark' # or 'light'
|
||||
|
||||
# Shift Alt vim keys to switch windows
|
||||
bind -n M-H previous-window
|
||||
|
@ -31,5 +31,38 @@ bind-key -T copy-mode-vi v send-keys -X begin-selection
|
|||
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
||||
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
||||
|
||||
# Theme settings
|
||||
|
||||
# Gruvbox theme settings
|
||||
|
||||
# set -g @plugin 'egel/tmux-gruvbox'
|
||||
# set -g @tmux-gruvbox 'dark' # or 'light'
|
||||
|
||||
# Catpuccin theme settings
|
||||
|
||||
# set -g @plugin 'dreamsofcode-io/catppuccin-tmux'
|
||||
set -g default-terminal "tmux-256color"
|
||||
|
||||
set -g @plugin 'catppuccin/tmux#v2.1.0' # See https://github.com/catppuccin/tmux/tags for additional tags
|
||||
|
||||
set -g @catppuccin_flavor 'mocha' # latte, frappe, macchiato or mocha
|
||||
set -g @catppuccin_window_status_style "rounded"
|
||||
|
||||
run ~/.config/tmux/plugins/tmux/catppuccin.tmux
|
||||
|
||||
# Set names in status line
|
||||
set -g @catppuccin_window_default_text " #W"
|
||||
set -g @catppuccin_window_current_text " #W"
|
||||
set -g @catppuccin_window_text " #W"
|
||||
|
||||
set -g status-right-length 100
|
||||
set -g status-left-length 100
|
||||
set -g status-left ""
|
||||
set -g status-right "#{E:@catppuccin_status_application}"
|
||||
set -agF status-right "#{E:@catppuccin_status_cpu}"
|
||||
set -ag status-right "#{E:@catppuccin_status_session}"
|
||||
set -ag status-right "#{E:@catppuccin_status_uptime}"
|
||||
set -agF status-right "#{E:@catppuccin_status_battery}"
|
||||
|
||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
Loading…
Reference in a new issue