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 9108a64f a47f1b69

+12 -4
+5 -3
README.md
··· 124 124 125 125 ### Tmux 126 126 127 - After stow tmux, i cant install the plugins. It needs the plugin manager: 127 + After stowing tmux, run this command to ensure clean plugin installation: 128 128 ``` 129 - git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm 129 + rm -rf ~/.tmux/plugins && tmux new-session -d && tmux kill-session 130 130 ``` 131 - then `ctrl + t` and `ctrl + I` should work. 131 + Then open tmux and press `Ctrl+t` + `I` to install all plugins. 132 + 133 + If you see "tmux resurrect file not found" errors, press `Ctrl+t` + `Ctrl+s` to save a session first. 132 134 ### Manual 133 135 - GIMP: ctrl + del shortcut 134 136 - ..
+7 -1
tmux/.tmux/README.md
··· 12 12 13 13 Then open tmux and press `Ctrl+t` followed by `I` to install all plugins. 14 14 15 - This removes the empty plugins directory and allows the plugin manager to properly install plugins from scratch. 15 + This removes the empty plugins directory and allows the plugin manager to properly install plugins from scratch. 16 + 17 + ## Tmux-Resurrect Error 18 + 19 + 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 + 21 + **Fix:** Press `Ctrl+t` + `Ctrl+s` to manually save a session first. The error will disappear on future reloads.