25 lines
772 B
Bash
25 lines
772 B
Bash
# Set default shell
|
|
set-option -g default-shell /usr/bin/zsh
|
|
set -g mouse on
|
|
set -g default-terminal "tmux-256color"
|
|
|
|
# Start windows and panes at 1, not 0
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
|
|
|
|
# Theme stuff
|
|
# Load catpuccin
|
|
set -g @catppuccin_flavor "frappe" # latte, frappe, macchiato, or mocha
|
|
set -g @catppuccin_window_status_style "rounded" # basic, rounded, slanted, custom, or none
|
|
run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux
|
|
|
|
# Make the status line pretty and add some modules
|
|
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 -ag status-right "#{E:@catppuccin_status_session}"
|
|
set -agF status-right "#[fg=#{@thm_crust},bg=#{@thm_teal}] ##H "
|