File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ vim扩展管理器使用的是Vundle,参见相关文档[3]。
3737
3838 ./install-plugins.sh rebuild --clang-completer --gocode-completer
3939
40+ 安装完成后后,可以通过修改HOME目录下的.vimrc.local来覆盖默认的vimrc配置。
41+
4042
4143# 问题集锦
4244
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33function install {
4- cp vimrc $HOME /.vimrc
4+ ln -s -f ` pwd` /vimrc $HOME /.vimrc
5+ touch $HOME /.vimrc.local
56 yes " \n" | sudo vim +PluginClean +qall
67 yes " \n" | sudo vim +PluginInstall +qall
78}
Original file line number Diff line number Diff line change @@ -263,3 +263,7 @@ nnoremap <S-Tab> <<_
263263inoremap <S-Tab> <C-D>
264264vnoremap <Tab> >gv
265265vnoremap <S-Tab> <gv
266+
267+
268+ " override with your local vimrc
269+ so ~/.vimrc.local
You can’t perform that action at this time.
0 commit comments