Cleanup Tmux config

This commit is contained in:
Ben Kreeger 2025-06-23 14:38:30 -05:00
parent 3dbd4ef58d
commit 47463aec8c
Signed by: kreeger
GPG Key ID: 1F33DAF2F49E4046

View File

@ -15,17 +15,15 @@ set -g renumber-windows on
set -g status-position bottom set -g status-position bottom
# Catppuccin options # Catppuccin options
set -g @catppuccin_window_status_style 'rounded'
# Fetch tmux plugin manager and plugins
set -g @plugin 'catppuccin/tmux' set -g @plugin 'catppuccin/tmux'
run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux run ~/.config/tmux/plugins/tmux/catppuccin.tmux
set -g @catppuccin_window_status_style 'rounded'
# Beautify the status line?? set -g @catppuccin_window_text " #W"
set -g @catppuccin_window_current_text " #W"
set -g @catppuccin_window_flags "icon"
set -g status-left-length 100 set -g status-left-length 100
set -g status-left "#{E:@catppuccin_status_session}" set -g status-left "#{E:@catppuccin_status_session}"
set -g status-justify centre set -g status-justify centre
set -g status-right-length 100 set -g status-right-length 100
set -g status-right "#{E:@catppuccin_status_application}" set -g status-right "#{E:@catppuccin_status_application}"
set -agF status-right "#{E:@catppuccin_status_cpu}" set -agF status-right "#{E:@catppuccin_status_cpu}"
@ -36,6 +34,9 @@ bind-key r source-file ~/.config/tmux/tmux.conf;
bind-key t new-window; bind-key t new-window;
bind-key v split-window -h; bind-key v split-window -h;
bind-key h split-window -v; bind-key h split-window -v;
bind-key [ select-window -p
bind-key ] select-window -n
# Then boot up TPM # Then boot up TPM
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'