From f176886688de95e91f49a8b84ddf13eed89f680d Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sun, 25 Aug 2024 10:39:27 -0400 Subject: [PATCH] fix: install ohmyzsh only if haven't --- .install/zsh.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.install/zsh.sh b/.install/zsh.sh index b45fdd7..da46dc8 100644 --- a/.install/zsh.sh +++ b/.install/zsh.sh @@ -7,7 +7,9 @@ echo "Please select the zsh plugin manager:" zsh_manager=$(gum choose --limit=1 --cursor-prefix "( ) " --selected-prefix "(x) " --unselected-prefix "( ) " "oh my zsh" "zinit") if [[ "${zsh_manager}" == *"oh my zsh"* ]]; then source .install/install-packages.sh - RUNZSH=no CHSH=no sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" + if [ ! -d ~/.oh-my-zsh ]; then + RUNZSH=no CHSH=no sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" + fi git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting