Files
dotfiles/tmux/.tmux.conf
2026-03-26 22:12:36 +02:00

20 lines
1.3 KiB
Bash

# ─── plugins ──────────────────────────────────────────────────────────────────
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# ─── mouse ────────────────────────────────────────────────────────────────────
set -g mouse on
# ─── navigation ───────────────────────────────────────────────────────────────
bind -n C-n next-window
bind -n C-p previous-window
# ─── catppuccin ───────────────────────────────────────────────────────────────
set -g @plugin 'catppuccin/tmux'
set -g @catppuccin_flavour 'mocha'
set -g @catppuccin_window_text " #W"
set -g @catppuccin_window_current_text " #W"
# ─── initialize tpm (keep at bottom) ──────────────────────────────────────────
run '~/.tmux/plugins/tpm/tpm'