Browse Source

Install NeoVim instead of Vim

master
Julio Biason 4 years ago
parent
commit
cac7394d4c
  1. 21
      install.sh

21
install.sh

@ -1,15 +1,5 @@
#!/bin/sh #!/bin/sh
vim() {
echo "Installing VIM configuration..."
ln -sf vim ~/.vim
echo "Initializing plugins..."
cd ~/.vim/
git submodule init
git submodule update
cd -
}
starship() { starship() {
echo "Installing Starship configuration..." echo "Installing Starship configuration..."
ln -sf $PWD/starship/starship.toml ~/.config/starship.toml ln -sf $PWD/starship/starship.toml ~/.config/starship.toml
@ -48,7 +38,16 @@ bat() {
fi fi
} }
vim nvim() {
echo "Installing NeoVim configuration..."
ln -sf ~/nvim ~/.config
cd ~/.config/nvim
git submodule init
git submodule update
cd -
}
nvim
starship starship
kitty kitty
git git

Loading…
Cancel
Save