https://blog.csdn.net/cs874300/article/details/108562173

版本Ubuntu 18.04 LTS + SpaceVim 1.6.0 + neovim 默认你会使用vim里面的:q! :wq因为我目前就只会这些.

1.neovim0.4.4安装

通过apt-get安装的neovim版本好像有点低,通过以下方式安装 参考https://blog.csdn.net/henryhu712/article/details/80458753 1.安装PPA - Personal Package Archive 个人包档案

sudo apt-get install software-properties-common

2.安装stable版本的neovim

sudo apt-add-repository ppa:neovim-ppa/stable
sudo apt-get update
sudo apt-get install neovim

在Terminal使用nvim进入neovim得到如下结果

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f70cb857-7d9b-40b7-9bd7-02e888c4a424/20200913144103802.png

2.SpaceVim安装

https://spacevim.org/cn/quick-start-guide/ 根据官网的来吧,首先安装git和curl

sudo apt-get install git
sudo apt-get install curl

然后安装SpaceVim

curl -sLf <https://spacevim.org/cn/install.sh> | bash

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9562fa88-aa0f-4934-b29f-dd311da9e40f/20200913144451956.png

输入nvim打开如下图,

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/84d5fb72-17cc-4272-a4b4-8cc588efaff0/20200913144617212.png

我这里还有图标问题暂时没有解决,然后进去会有一个红色error跳了一下使用[Enter]选择模式后’:q’退出.

解决vimproc Error的问题