From 47463aec8cfa9f876373c304e39830ef63fc3b6f Mon Sep 17 00:00:00 2001 From: Ben Kreeger Date: Mon, 23 Jun 2025 14:38:30 -0500 Subject: [PATCH] Cleanup Tmux config --- tmux/tmux.conf | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 304b2e3..c107274 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -15,17 +15,15 @@ set -g renumber-windows on set -g status-position bottom # Catppuccin options -set -g @catppuccin_window_status_style 'rounded' - -# Fetch tmux plugin manager and plugins set -g @plugin 'catppuccin/tmux' -run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux - -# Beautify the status line?? +run ~/.config/tmux/plugins/tmux/catppuccin.tmux +set -g @catppuccin_window_status_style 'rounded' +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 "#{E:@catppuccin_status_session}" set -g status-justify centre - set -g status-right-length 100 set -g status-right "#{E:@catppuccin_status_application}" 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 v split-window -h; bind-key h split-window -v; +bind-key [ select-window -p +bind-key ] select-window -n + # Then boot up TPM set -g @plugin 'tmux-plugins/tpm'