Files
dotfiles/setup.sh
T
2025-10-05 14:28:56 -05:00

23 lines
558 B
Bash
Executable File

echo "installing nvm"
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
echo "installing sdkman"
curl -s "https://get.sdkman.io" | bash
echo "installing ohmyzsh"
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
echo "linking .zshrc"
if [ -f ~/.zshrc ]; then
echo ".zshrc exists removing"
rm ~/.zshrc
fi
ln -s ~/dotfiles/.zshrc ~/.zshrc
echo "linking .vimrc"
if [ -f ~/.vimrc ]; then
echo ".vimrc exists removing"
rm ~/.vimrc
fi
ln -s ~/dotfiles/.vimrc ~/.vimrc