From e34c29330e25eaa595bd22511b7b55dd0cb07550 Mon Sep 17 00:00:00 2001 From: Niccolo Borgioli Date: Sun, 17 Nov 2024 01:25:33 +0100 Subject: [PATCH] clenup install script --- install | 37 +++++++++++++------------------------ 1 file changed, 13 insertions(+), 24 deletions(-) diff --git a/install b/install index 5348549..8b57d85 100755 --- a/install +++ b/install @@ -18,33 +18,22 @@ git submodule update --init --recursive platform="$(uname -s)" function uninstalled() { - if which $1 >/dev/null; then - return 1 - else - return 0 - fi + if which "$1" >/dev/null; then + return 1 + else + return 0 + fi } - # macOS if [[ $platform == "Darwin" ]]; then - # Brew - if uninstalled brew; then - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - fi - brew bundle --no-lock --file ./files/Brewfile + # Brew + if uninstalled brew; then + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + fi + brew bundle --no-lock --file ./files/Brewfile - # iTerm2 - defaults write com.googlecode.iterm2.plist PrefsCustomFolder -string "~/.dotfiles/files/iterm2" - defaults write com.googlecode.iterm2.plist LoadPrefsFromCustomFolder -bool true + # iTerm2 + defaults write com.googlecode.iterm2.plist PrefsCustomFolder -string "~/.dotfiles/files/iterm2" + defaults write com.googlecode.iterm2.plist LoadPrefsFromCustomFolder -bool true fi - -# NeoVim & Vim Plugins https://github.com/junegunn/vim-plug -for dir in "$HOME/.vim/autoload/plug.vim" "${XDG_DATA_HOME:-$HOME/.local/share}/nvim/site/autoload/plug.vim" -do - if [[ ! -f $dir ]] - then - echo "Installing Plug to: $dir" - curl -fLo "$dir" --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim - fi -done