From 52c2c5bd6bc2917511722a45b187f7545d60dbd2 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 30 May 2023 08:17:37 -0500 Subject: [PATCH] add ohmyzsh install --- setup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 094d0af..8e5cc32 100755 --- a/setup.sh +++ b/setup.sh @@ -4,6 +4,9 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.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" @@ -16,4 +19,4 @@ if [ -f ~/.vimrc ]; then echo ".vimrc exists removing" rm ~/.vimrc fi -ln -s ~/dotfiles/.vimrc ~/.vimrc \ No newline at end of file +ln -s ~/dotfiles/.vimrc ~/.vimrc