25 lines
766 B
Bash
25 lines
766 B
Bash
# ~/.tmux.conf
|
|
|
|
# Options to make tmux more pleasant
|
|
set -g mouse on
|
|
set -g default-terminal "tmux-256color"
|
|
set -a terminal-features 'xterm-256color:RGB'
|
|
|
|
# Configure the catppuccin plugin
|
|
set -g @catppuccin_flavor "mocha"
|
|
set -g @catppuccin_window_status_style "rounded"
|
|
|
|
# Load catppuccin
|
|
run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux
|
|
# For TPM, instead use `run ~/.config/tmux/plugins/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_date_time}"
|
|
|
|
run ~/.config/tmux/plugins/tmux-plugins/tmux-cpu/cpu.tmux
|
|
run ~/.config/tmux/plugins/tmux-plugins/tmux-battery/battery.tmux
|
|
# Or, if using TPM, just run TPM
|