[scripts] removed old vim-to-nvim script
This commit is contained in:
parent
d36a6beb85
commit
b8c9bb98c1
1 changed files with 0 additions and 24 deletions
|
@ -1,24 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
echo "Setting up zsh..."
|
|
||||||
echo "alias vim='nvim'" >> .zshrc
|
|
||||||
|
|
||||||
echo "Switch from Pathogen to vim-plug..."
|
|
||||||
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
|
|
||||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
||||||
rm -rf ~/.vim/bundle
|
|
||||||
curl -fLo ~/.config/nvim/init.vim --create-dirs \
|
|
||||||
https://lab.marcel-kapfer.de/config/init.vim
|
|
||||||
|
|
||||||
echo "Installing Python 3 neovim plugin..."
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install python3-pip
|
|
||||||
sudo pip3 install neovim
|
|
||||||
|
|
||||||
echo "Remove vim-latexsuite package..."
|
|
||||||
sudo apt-get remove vim-latexsuite
|
|
||||||
sudo apt-get autoremove
|
|
||||||
|
|
||||||
echo "Start now nvim of vim and execute the following commands:
|
|
||||||
:PlugInstall
|
|
||||||
:UpdateRemotePlugins
|
|
||||||
then restart neovim and enjoy your new neovim experience."
|
|
Loading…
Reference in a new issue