remove brew plugin

This commit is contained in:
2022-11-09 13:12:37 +01:00
parent b79c09c5d3
commit d8b137e382
5 changed files with 27 additions and 15 deletions

29
install
View File

@@ -12,14 +12,33 @@ cd "${BASEDIR}"
git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive
git submodule update --init --recursive
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"
# Own Stuff
platform="$(uname -s)"
if [[ $platform == "Darwin" ]]; then
# Brew
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" --plugin-dir plugins/dotbot-brew -c "${CONFIG}" "${@}"
else
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"
function uninstalled() {
if which $1 >/dev/null; then
return 1
else
return 0
fi
}
# PNPM
if uninstalled pnpm; then
curl -fsSL https://get.pnpm.io/install.sh | sh -
fi
# Brew
if [[ $platform == "Darwin" ]]; then
if uninstalled brew; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
brew bundle --file ./files/Brewfile
fi
# NeoVim & Vim Plugins https://github.com/junegunn/vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'