moved nvim completely to dotfiles repo

This commit is contained in:
doman 2023-08-29 22:13:18 +02:00
parent 0dec6ab972
commit d094f5d36a

View file

@ -1,14 +0,0 @@
#! /bin/bash
#
VIM_PLUG_INSTALL="https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
setup_vim() {
curl -fLo ~/.vim/autoload/plug.vim --create-dirs ${VIM_PLUG_INSTALL}
vim +PlugInstall +qall
git clone --depth 1 https://github.com/AstroNvim/AstroNvim ~/.config/nvim
git clone git@github.com:ickyicky/astrovim_config.git ~/.config/nvim/lua/user
}
ask "setup vim? (y/n)"
[ "$RESP" != "n" ] && setup_vim