diff --git a/README.md b/README.md index 6e2dc2461e6dbedb67c9cd5558823d610815b845..339ede048395cbccb2d246a2f6e40a5e0115eded 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,4 @@ Existiert jedoch ein nvim Ordner im config directory, diesen einfach manuell ent curl -s https://code.fbi.h-da.de/stalmalek/neovim-setup/-/raw/main/nvimSetup.sh -o setup.sh bash setup.sh -r rm setup.sh +``` diff --git a/nvimSetup.sh b/nvimSetup.sh index c76f60ad8a58dc2e016264f25c9a0f1fbe9ae82e..3ab0897576938e4e72fb984a36ee779fe80d1f89 100755 --- a/nvimSetup.sh +++ b/nvimSetup.sh @@ -9,10 +9,6 @@ # Plugins # -> https://www.youtube.com/watch?v=QB9V__3VO2s # -> https://web.archive.org/web/20210106062619/https://www.chrisatmachine.com/Neovim/01-vim-plug/ -# -# Easy mode (Spacevim) -# -> https://spacevim.org/ - helpme() { @@ -37,28 +33,6 @@ do esac done -choice="" -echo "Install easy mode (Spacevim)? Also removes Spacevim if already installed [y/n]" -while [ "$choice" != "y" -a "$choice" != "n" ] -do - read choice -done - - - -if [ "$choice" = "y" ] -then - if [ -d ~/.config/nvim/.SpaceVim.d ] - then - curl -sLf https://spacevim.org/install.sh | bash -s -- --uninstall - echo "SpaceVim uninstalled" - exit 0 - else - curl -sLf https://spacevim.org/install.sh | bash - exit 0 - fi -fi - if [ ! -x "$(command -v nvim)" ] then