vim安装插件管理工具
- 学习
- 2023-07-17 08:47:11
- 1152
Linux系统系统版本是Debian 12,安装Nodejs配置环境:apt install nodejs sh-c'curl-fLo&q...
Linux系统系统版本是Debian 12,安装Nodejs配置环境:
apt install nodejs sh-c'curl-fLo"${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim--create-dirs\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
或者:
curl-fLo~/.vim/autoload/plug.vim--create-dirs\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
提示raw.githubusercontent.com拒绝连接。
解决方法:打开站长工具解析域名:raw.githubusercontent.com。可以看到最新解析出来的IP,然后编辑vim /etc/host文件填入解析出来的IP raw.githubusercontent.com
把下载下来的配置文件移动到~/.vim/autoload/vim文件夹下面:
mv~/.local/share/nvim/site/autoload/plug.vim ~/.vim/autoload/vim
Plug.vim下载完成后在 编辑/usr/share/vim/vimrc文件,添加下列代码:
call plug#begin(‘~./vim/plugged’) call plug#end()
打开vim提示错误“get executable not found most commands will not be available to suppress this message prepend silent to call plug”
安装git解决:
apt install git
安装插件
打开vim 输入Plugins
vim 安装插件成功。这里附上插件管理命令:
:PlugInstall 安装插件 :PlugInstall vim-startify 按名称安装插件 :PlugClean 卸载插件,或者在vimrc注释对应的插件 :PlugUpgrade 更新vim-plug插件自身 :PlugUpdate 批量更新插件 :PlugStatus 查看插件状态 :PlugDiff 查看插件变化,回滚有问题的插件
本文由admin于2023-07-17原创发表在七月博客,转载须经本站同意。
本文链接:https://jul.cn/post/45.html
本文链接:https://jul.cn/post/45.html
下一篇:反省
发表评论