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
13
install
13
install
@ -18,14 +18,13 @@ git submodule update --init --recursive
|
||||
platform="$(uname -s)"
|
||||
|
||||
function uninstalled() {
|
||||
if which $1 >/dev/null; then
|
||||
if which "$1" >/dev/null; then
|
||||
return 1
|
||||
else
|
||||
return 0
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
# macOS
|
||||
if [[ $platform == "Darwin" ]]; then
|
||||
# Brew
|
||||
@ -38,13 +37,3 @@ if [[ $platform == "Darwin" ]]; then
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user