1
0
mirror of https://github.com/alrayyes/server-dotfiles synced 2023-11-14 15:56:25 +00:00
server-dotfiles/install

31 lines
850 B
Plaintext
Raw Normal View History

2020-02-14 15:18:48 +00:00
#!/usr/bin/env bash
2020-02-14 15:25:22 +00:00
# Create nvim config directory if it doesn't exist
if [ ! -d ~/.config/nvim ]; then
echo "Creating ~/.config/nvim"
mkdir -p ~/.config/nvim
fi
2020-02-14 15:18:48 +00:00
for d in $(ls -d */ | cut -f1 -d '/'); do
(stow $d)
done
2020-02-14 15:25:22 +00:00
# Install zplug if it doesn't exist yet
if [ ! -d ~/.zplug ]; then
echo "Installing zplug"
curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
2020-02-14 15:18:48 +00:00
fi
2020-02-14 15:25:22 +00:00
2020-02-14 15:30:16 +00:00
# Install vim plugins & requirements
if [ ! "$(pip list --user | grep 'pynvim' | wc -l)" -ge 1 ]; then
pip install --user pynvim
fi
# Install plug package manager if it doesn't exist
if [ ! -d ~/.config/nvim/plugged ]; then
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
2020-02-14 15:25:22 +00:00
# Install nvim pluugins
nvim +PlugInstall +qall