Nvim补全配置记录

警告
本文最后更新于 2022-01-16,文中内容可能已过时,请谨慎使用。
sudo apt-get install neovim # 安装
sudo apt remove neovim # 删除

在官方仓库下载最新稳定版文件: nvim-linux64.deb

sudo apt install ./nvim-linux64.deb
nvim

F:\hugo\tencent_hugo_blog\static\images\all\install_error_1.png

如果遇到上面的问题,可以使用下面的方式进行安装

sudo dpkg -i --force-overwrite ./nvim-linux64.deb
sudo apt -f install

安装成功后打开nvim, 版本为v0.8.1

F:\hugo\tencent_hugo_blog\static\images\all\nvim_init.png

mkdir -p .cofig/nvim
cd .cofig/nvim
touch init.lua
sudo apt install nodejs npm 
nodejs --version # 查看版本
sudo npm install n -g
sudo n stable
nodejs --version # 查看版本
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

注意:如果之前安装过插件,请全部卸载,具体办法为:删除.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', '')

相关文章