clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

update tmux conf for next stow install to work

sspaeti d763d41f 7e68ca24

+16 -1
+1 -1
.gitignore
··· 44 44 msmtp/.msmtprc 45 45 46 46 #tmux 47 - tmux/.tmux/plugins 48 47 tmux/.tmux/tmux-client-*.log 48 + tmux/.tmux/plugins/ 49 49
+15
tmux/.tmux/README.md
··· 1 + # Tmux Setup 2 + 3 + ## Plugin Installation After Stow 4 + 5 + When you stow tmux configuration, the `~/.tmux/plugins` directory may be empty but still exist, which prevents proper plugin installation. 6 + 7 + **Run this command after stowing tmux:** 8 + 9 + ```bash 10 + rm -rf ~/.tmux/plugins && tmux new-session -d && tmux kill-session 11 + ``` 12 + 13 + Then open tmux and press `Ctrl+t` followed by `I` to install all plugins. 14 + 15 + This removes the empty plugins directory and allows the plugin manager to properly install plugins from scratch.