用的 curl 安装:
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
然后根据教程在.vim 文件下建了个 plugged 文件夹指定插件安装位置,随便加了个插件接着 PlugInstall,结果报:Not an Editor command
检查了下 plug.vim 已经在 /root/.vim/autoload/中了
听群友建议在.vimrc 输入 set runtimepath, 显示
runtimepath=~/.vim,~/.vim/plugged/vim-easy-align
似乎能正常识别,但是在文件上:PlugInstall
还是失败,同样报:Not an Editor command
我的 vim 界面如下:
~
~
~ VIM - Vi IMproved
~
~ version 8.0.1763
~ by Bram Moolenaar et al.
~ Modified by <[email protected]>
~ Vim is open source and freely distributable
~
~ Sponsor Vim development!
~ type :help sponsor<Enter> for information
~
~ type :q<Enter> to exit
~ type :help<Enter> or <F1> for on-line help
~ type :help version8<Enter> for version info
~
~
~
~
~
.vimrc 配置目前如下:
set runtimepath=/root/.vim
silent call plug#begin('~/.vim/plugged')
Plug 'junegunn/vim-easy-align'
call plug#end()
set nu
set ai
set ls=2
set tabstop=4
set ruler
问下有同样经历的友人是怎么解决的?
1
ProPh3t 2021-12-31 23:03:23 +08:00
我记得跟 github 有关的阿里云是直接墙掉了,估计没有安装完整,而且要装其他插件也都是从 github 上拉的,大概率装不上。
推荐本地配置好 vim ,然后 vim scp 编辑远程文件。 |