38 lines
881 B
Bash
38 lines
881 B
Bash
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
set -g @plugin 'catppuccin/tmux#v2.1.3'
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
set -g @continuum-save-interval '2'
|
|
set -g @continuum-restore 'on'
|
|
|
|
set -g mouse on
|
|
|
|
set -g base-index 1
|
|
set -g pane-base-index 1
|
|
|
|
# Faster escape sequences (better for Vim/Neovim)
|
|
set -s escape-time 10
|
|
|
|
# Increase scrollback buffer size
|
|
set -g history-limit 50000
|
|
|
|
# True color settings
|
|
set -g default-terminal "$TERM"
|
|
set -ag terminal-overrides ",$TERM:Tc"
|
|
|
|
set -g status-interval 10
|
|
|
|
|
|
set -g @catppuccin_window_text " #W"
|
|
set -g @catppuccin_window_default_text " #W"
|
|
set -g @catppuccin_window_current_text " #W"
|
|
|
|
run ~/.tmux/plugins/tmux/catppuccin.tmux
|
|
|
|
set -g status-justify "left"
|
|
set -g status-left " "
|
|
set -gF status-right "#[fg=#{@thm_crust},bg=#{@thm_teal}] ##H "
|
|
|
|
run '/usr/share/tmux-plugin-manager/tpm'
|