vim 配置

vim 是一个终端代码编辑器,是 SSH 开发利器,但是配置较为繁琐,我基于 网上 的加以改进,配置地址Github

1. 使用终端 clone 代码

cd ~
git clone https://github.com/zhongfq/vimrc .vimrc.git
ln -sf .vimrc.git/vim .vim
ln -sf .vimrc.git/vimrc .vimrc
cd .vimrc.git
git submodule init
git submodule update

2. vim 中执行下面命令安装插件

:BundleInstall

3. YouCompleteMe 插件要单独编译

cd ~/.vim/bundle/YouCompleteMe
python3 install.py --all

详细另见YouCompleteMe