mirror of
https://github.com/cupcakearmy/dotfiles.git
synced 2024-12-22 00:06:32 +00:00
clenup install script
This commit is contained in:
parent
d6756493cd
commit
e34c29330e
37
install
37
install
@ -18,33 +18,22 @@ git submodule update --init --recursive
|
|||||||
platform="$(uname -s)"
|
platform="$(uname -s)"
|
||||||
|
|
||||||
function uninstalled() {
|
function uninstalled() {
|
||||||
if which $1 >/dev/null; then
|
if which "$1" >/dev/null; then
|
||||||
return 1
|
return 1
|
||||||
else
|
else
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# macOS
|
# macOS
|
||||||
if [[ $platform == "Darwin" ]]; then
|
if [[ $platform == "Darwin" ]]; then
|
||||||
# Brew
|
# Brew
|
||||||
if uninstalled brew; then
|
if uninstalled brew; then
|
||||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||||
fi
|
fi
|
||||||
brew bundle --no-lock --file ./files/Brewfile
|
brew bundle --no-lock --file ./files/Brewfile
|
||||||
|
|
||||||
# iTerm2
|
# iTerm2
|
||||||
defaults write com.googlecode.iterm2.plist PrefsCustomFolder -string "~/.dotfiles/files/iterm2"
|
defaults write com.googlecode.iterm2.plist PrefsCustomFolder -string "~/.dotfiles/files/iterm2"
|
||||||
defaults write com.googlecode.iterm2.plist LoadPrefsFromCustomFolder -bool true
|
defaults write com.googlecode.iterm2.plist LoadPrefsFromCustomFolder -bool true
|
||||||
fi
|
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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user