diff --git a/README.md b/README.md index dda16231a..dd564fa71 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ For learning about Vim in general, read ##### Install ```sh -curl -sLf https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/install.sh | bash +curl -sLf https://spacevim.org/install.sh | bash ``` before use SpaceVim, you should install the plugin by `call dein#install()` @@ -42,7 +42,7 @@ installation of neovim/vim with python support: for more info about the install script, please check: ```sh -curl -sLf https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/install.sh | bash -s -- -h +curl -sLf https://spacevim.org/install.sh | bash -s -- -h ``` #### Features diff --git a/install.sh b/install.sh index 17ff22bbc..a041c9baf 100755 --- a/install.sh +++ b/install.sh @@ -95,13 +95,13 @@ uninstall_neovim () { usage () { echo "SpaceVim install script : V 0.1.0-dev" echo " Install SpaceVim for vim and neovim" - echo " curl -sLf https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/install.sh | bash" + echo " curl -sLf https://spacevim.org/install.sh | bash" echo " Install SpaceVim for vim only or neovim only" - echo " curl -sLf https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/install.sh | bash -s -- install vim" + echo " curl -sLf https://spacevim.org/install.sh | bash -s -- install vim" echo " or" - echo " curl -sLf https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/install.sh | bash -s -- install neovim" + echo " curl -sLf https://spacevim.org/install.sh | bash -s -- install neovim" echo " Uninstall SpaceVim" - echo " curl -sLf https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/install.sh | bash -s -- uninstall" + echo " curl -sLf https://spacevim.org/install.sh | bash -s -- uninstall" }