···1010rm -rf ~/.tmux/plugins && tmux new-session -d && tmux kill-session
1111```
12121313-Then open tmux and press `Ctrl+t` followed by `I` to install all plugins.
1313+**Then install TPM (Tmux Plugin Manager) first:**
1414+1515+Run this command to install TPM and all plugins:
1616+1717+```bash
1818+mkdir -p ~/.tmux/plugins
1919+git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm 2>/dev/null || true
2020+~/.tmux/plugins/tpm/bin/install_plugins
2121+```
2222+2323+After TPM is installed, you can use `Ctrl+t` followed by `I` for future plugin installations.
14241525This removes the empty plugins directory and allows the plugin manager to properly install plugins from scratch.
1626···18281929If you see "tmux resurrect file not found" errors when reloading tmux, it's because the resurrect plugin is trying to restore from a save file that doesn't exist yet.
20302121-**Fix:** Press `Ctrl+t` + `Ctrl+s` to manually save a session first. The error will disappear on future reloads.3131+**Fix:** Press `Ctrl+t` + `Ctrl+s` to manually save a session first. The error will disappear on future reloads.