this repo has no description
0
fork

Configure Feed

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

setup: +tpm install

+9
+9
setup.sh
··· 61 61 fi 62 62 } 63 63 64 + function install_tpm { 65 + if [ -d "$HOME/.tmux/plugins/tpm" ]; then 66 + echo "TPM is already installed." 67 + return 68 + fi 69 + git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm 70 + } 71 + 64 72 link_configs 65 73 install_oh_my_zsh 74 + install_tpm