···11+# Tmux Setup
22+33+## Plugin Installation After Stow
44+55+When you stow tmux configuration, the `~/.tmux/plugins` directory may be empty but still exist, which prevents proper plugin installation.
66+77+**Run this command after stowing tmux:**
88+99+```bash
1010+rm -rf ~/.tmux/plugins && tmux new-session -d && tmux kill-session
1111+```
1212+1313+Then open tmux and press `Ctrl+t` followed by `I` to install all plugins.
1414+1515+This removes the empty plugins directory and allows the plugin manager to properly install plugins from scratch.