clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update tmux

sspaeti 7e4a38f1 d84cb7c7

+19 -2
+7
Makefile
··· 70 70 arch-install: 71 71 sudo pacman -S --needed - < pacman.txt 72 72 yay -S --needed --noconfirm - < yay_aur.txt 73 + 74 + tmux-init-install: 75 + rm -rf ~/.tmux/plugins 76 + tmux new-session -d && tmux kill-session 77 + mkdir -p ~/.tmux/plugins 78 + git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm 2>/dev/null || true 79 + ~/.tmux/plugins/tpm/bin/install_plugins
+12 -2
tmux/.tmux/README.md
··· 10 10 rm -rf ~/.tmux/plugins && tmux new-session -d && tmux kill-session 11 11 ``` 12 12 13 - Then open tmux and press `Ctrl+t` followed by `I` to install all plugins. 13 + **Then install TPM (Tmux Plugin Manager) first:** 14 + 15 + Run this command to install TPM and all plugins: 16 + 17 + ```bash 18 + mkdir -p ~/.tmux/plugins 19 + git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm 2>/dev/null || true 20 + ~/.tmux/plugins/tpm/bin/install_plugins 21 + ``` 22 + 23 + After TPM is installed, you can use `Ctrl+t` followed by `I` for future plugin installations. 14 24 15 25 This removes the empty plugins directory and allows the plugin manager to properly install plugins from scratch. 16 26 ··· 18 28 19 29 If 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. 20 30 21 - **Fix:** Press `Ctrl+t` + `Ctrl+s` to manually save a session first. The error will disappear on future reloads. 31 + **Fix:** Press `Ctrl+t` + `Ctrl+s` to manually save a session first. The error will disappear on future reloads.