From d094f5d36a36d4c4273058c4520873b292b0fba3 Mon Sep 17 00:00:00 2001 From: doman Date: Tue, 29 Aug 2023 22:13:18 +0200 Subject: [PATCH] moved nvim completely to dotfiles repo --- scripts/vim.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 scripts/vim.sh diff --git a/scripts/vim.sh b/scripts/vim.sh deleted file mode 100644 index 52b80e6..0000000 --- a/scripts/vim.sh +++ /dev/null @@ -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