Update install.sh

This commit is contained in:
alvinlollo
2025-01-30 15:43:28 +11:00
committed by GitHub
parent 9c35b42d77
commit 3d6b126f46
+12 -11
View File
@@ -50,36 +50,37 @@ set +eux
# Install Oh-My-zsh if not installed # Install Oh-My-zsh if not installed
if [ ! -f ~/.zshrc ]; then if [ ! -f ~/.zshrc ]; then
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | sh
fi fi
# Enable exit on error # Enable exit on error
set -eux set -eux
# Remove old config file # Backup old config file if it exists
rm -rf ~/.zshrc if [ -f ~/.zshrc ]; then
mv ~/.zshrc ~/.zshrc.backup
fi
# Replace config file # Download and replace config file
touch ~/.zshrc curl -fsSL https://raw.githubusercontent.com/alvinlollo/Single-install-script/refs/heads/main/configs/.zshrc -o ~/.zshrc
echo "$(curl https://raw.githubusercontent.com/alvinlollo/Single-install-script/refs/heads/main/configs/.zshrc)" >> ~/.zshrc
# [zsh-history-substring-search](https://github.com/zsh-users/zsh-history-substring-search) # [zsh-history-substring-search](https://github.com/zsh-users/zsh-history-substring-search)
if [ ! -d ~/.oh-my-zsh/custom/plugins/zsh-history-substring-search ]; then if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search ]; then
git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search
fi fi
# [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions) # [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions)
if [ ! -d ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions ];then if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ];then
git clone https://github.com/zsh-users/zsh-autosuggestions "${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions" git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
fi fi
# [zsh-eza](https://github.com/z-shell/zsh-eza) # [zsh-eza](https://github.com/z-shell/zsh-eza)
if [ ! -d ~/.oh-my-zsh/custom/plugins/zsh-eza ]; then if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-eza ]; then
git clone https://github.com/z-shell/zsh-eza.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-eza git clone https://github.com/z-shell/zsh-eza.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-eza
fi fi
# [fzf-zsh-plugin](https://github.com/unixorn/fzf-zsh-plugin) # [fzf-zsh-plugin](https://github.com/unixorn/fzf-zsh-plugin)
if [ ! -d ~/.oh-my-zsh/custom/plugins/fzf-zsh-plugin ]; then if [ ! -d ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-zsh-plugin ]; then
git clone --depth 1 https://github.com/unixorn/fzf-zsh-plugin.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-zsh-plugin git clone --depth 1 https://github.com/unixorn/fzf-zsh-plugin.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-zsh-plugin
fi fi