refactored spacevim to neovim
This commit is contained in:
parent
431cd22232
commit
af7703c168
2 changed files with 8 additions and 6 deletions
24
nvchad.sh
Executable file
24
nvchad.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
echo "Setting up Vim Sensible"
|
||||
trash ~/.vim/
|
||||
mkdir -p ~/.vim/pack/tpope/start
|
||||
git clone https://tpope.io/vim/sensible.git ~/.vim/pack/tpope/start
|
||||
|
||||
echo "Install Neovim"
|
||||
mkdir -v ~/bin
|
||||
if [[ -f "/usr/bin/neovim" ]]; then
|
||||
trash ~/bin/nvim
|
||||
curl -L https://github.com/neovim/neovim/releases/download/v0.11.2/nvim-linux-x86_64.appimage -o ~/bin/nvim
|
||||
chmod u+x ~/bin/nvim
|
||||
fi
|
||||
|
||||
echo "Install NvChad"
|
||||
# https://nvchad.com/docs/quickstart/install
|
||||
trash ~/.config/nvim/
|
||||
trash ~/.local/state/nvim/
|
||||
trash ~/.local/share/nvim/
|
||||
git clone https://github.com/NvChad/starter ~/.config/nvim
|
||||
|
||||
#echo "Install Lunar Vim"
|
||||
#source: https://www.lunarvim.org/docs/installation
|
||||
#LV_BRANCH='release-1.4/neovim-0.9' bash <(curl -s https://raw.githubusercontent.com/LunarVim/LunarVim/release-1.4/neovim-0.9/utils/installer/install.sh)
|
Loading…
Add table
Add a link
Reference in a new issue