23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
# ─── General settings ────────────────────────────────────────────
|
|
set -g default-terminal "tmux-256color"
|
|
set -g base-index 1
|
|
set -g renumber-windows on
|
|
set -g automatic-rename on
|
|
set -g mouse on
|
|
setw -g pane-base-index 1
|
|
|
|
# ─── Plugins (managed by TPM) ────────────────────────────────────
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
|
|
# ─── Resurrect settings ─────────────────────────────────────────
|
|
set -g @resurrect-capture-pane-contents 'on'
|
|
set -g @resurrect-strategy-vim 'session'
|
|
|
|
# ─── Continuum settings (auto-save & restore) ───────────────────
|
|
set -g @continuum-restore 'on'
|
|
|
|
# ─── Initialize TPM (keep this at the very bottom) ──────────────
|
|
run '~/.tmux/plugins/tpm/tpm'
|