# TMUX Leader set -g prefix C-Space # List of plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-cpu' set -g @plugin 'christoomey/vim-tmux-navigator' set -g @plugin 'catppuccin/tmux#v2.1.3' # Start index at 1 set -g base-index 1 set -g pane-base-index 1 set-window-option -g pane-base-index 1 set-option -g renumber-windows on # vim navigation bind-key h previous-window bind-key l next-window # Open panes in current dir and bind to non-defaults unbind '"' unbind % bind k split-window -v -c "#{pane_current_path}" bind j split-window -h -c "#{pane_current_path}" # Theme & Color set -g default-terminal "tmux-256color" set -ag terminal-features ",xterm-256color:RGB" set -g @catppuccin_flavor 'mocha' set-option -g status-position bottom 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_uptime}" set -ag status-right "#{E:@catppuccin_status_session}" # Quick reloading unbind r bind r source-file ~/.tmux.conf # Enable mouse resizing set -g mouse on # Initialize TMUX plugin manager run '~/.tmux/plugins/tpm/tpm'