Skip to content

Commit

Permalink
🐛 fix spacevim install bug
Browse files Browse the repository at this point in the history
Bug: error neovim install command
  • Loading branch information
Yihan_G committed Dec 22, 2021
1 parent d6657f4 commit c4ac5b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/components/spacevim_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ install(){
# 安装nvim
if [ "$os" = "centos" ]; then
sudo yum install -y epel-release
sudo yum install -y nvim
sudo yum install -y neovim
elif [ "$os" = "ubuntu" ]; then
sudo apt-get install -y nvim
sudo apt-get install -y neovim
elif [ "$os" = "mac" ]; then
brew install nvim
brew install neovim
fi
# 安装spacevim
curl -sLf https://gitee.com/crownor/env/raw/master/assets/spacevim-install.sh | bash
Expand Down

0 comments on commit c4ac5b3

Please sign in to comment.