【Mac配置指北】流畅的内建词典
Page content
0x01 查看python支持
通过命令vim --version|grep python
查看是否存在 +python3
,存在的话直接看下一节0x02
。如果我们看到的情况是-python3
,那么就需要重新安装vim
。
我们通过brew install vim
来安装。在安装结束后通过最开始的步骤再次查看。
0x02 安装增强
我们通过以下命令,安装vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
添加