Nvim补全配置记录
目录
警告
本文最后更新于 2022-01-16,文中内容可能已过时,请谨慎使用。
安装及删除nvim(默认版本比较低)
sudo apt-get install neovim # 安装
sudo apt remove neovim # 删除
安装较高版本的nvim
在官方仓库下载最新稳定版文件: nvim-linux64.deb
sudo apt install ./nvim-linux64.deb
nvim
如果遇到上面的问题,可以使用下面的方式进行安装
sudo dpkg -i --force-overwrite ./nvim-linux64.deb
sudo apt -f install
安装成功后打开nvim
, 版本为v0.8.1
创建配置文件
mkdir -p .cofig/nvim
cd .cofig/nvim
touch init.lua
安装nodejs及npm
sudo apt install nodejs npm
nodejs --version # 查看版本
升级nodejs到最新版本(coc.nvim版本要求)
sudo npm install n -g
sudo n stable
nodejs --version # 查看版本
安装vim-plug插件管理器
url -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
安装插件进入~/.config/nvim/init.vim
输入命令:PlugInstall
使用PlugInstall
前先更换源
注意:如果之前安装过插件,请全部卸载,具体办法为:删除.local/share
文件夹下的plugge
目录
找到下面这两行
let fmt = get(g:, 'plug_url_format', 'https://git::@github.com/%s.git')
\ '^https://git::@github\.com', 'https://github.com', '')
依次修改为
let fmt = get(g:, 'plug_url_format', 'https://git::@hub.fastgit.org/%s.git')
\ '^https://git::@hub.fastgit\.org', 'https://hub.fastgit.org', '')