tmuxifier

This commit is contained in:
2026-04-15 22:00:59 +02:00
parent 64e545ae32
commit 7b7f5a5dcf
5 changed files with 391 additions and 2 deletions
+5 -2
View File
@@ -1,6 +1,5 @@
# ── General ───────────────────────────────────────────────────────────────────
set -g default-terminal "tmux-256color"
set -ag terminal-overrides ",xterm-256color:RGB"
@@ -31,7 +30,7 @@ bind k select-pane -U
bind l select-pane -R
# ── Plugins ───────────────────────────────────────────────────────────────────
# ── Plugins ───────────────────────────────────────────────────────────────────
# Auto-bootstrap TPM if not installed
if "test ! -d ~/.config/tmux/plugins/tpm" \
@@ -40,12 +39,16 @@ if "test ! -d ~/.config/tmux/plugins/tpm" \
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'sindrip/tmux-nvim-navigator'
set -g @plugin 'jimeh/tmuxifier'
# Catppuccin theme
set -g @plugin 'catppuccin/tmux'
set -g @catppuccin_flavor "mocha"
set -g @catppuccin_window_status_style "rounded"
# Tmuxifier environment
set-environment -g TMUXIFIER_LAYOUT_PATH "$HOME/.tmuxifier/layouts"
# ── Initialize TPM (must be last line before status bar) ──────────────────────