mirror of
https://github.com/jwetzell/dotfiles.git
synced 2026-08-02 22:18:05 +00:00
29 lines
715 B
Bash
Executable File
29 lines
715 B
Bash
Executable File
echo "installing nvm"
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/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
|
|
|
|
echo "linking .tmux.conf"
|
|
if [ -f ~/.tmux.conf ]; then
|
|
echo ".tmux.conf exists removing"
|
|
rm ~/.tmux.conf
|
|
fi
|
|
ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf |