We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2855eb commit 909151cCopy full SHA for 909151c
setup.sh
@@ -34,7 +34,16 @@ if [ -e ~/.vimrc ]; then
34
fi
35
36
37
+if [ -e ~/.gvimrc ]; then
38
+ if [ ! -L ~/.gvimrc ]; then
39
+ echo "You have a ~/.gvimrc that isn't a symlink. It will not be deleted. Please take care of it."
40
+ exit 1
41
+ fi
42
+fi
43
+
44
rm -f ~/.vim
45
rm -f ~/.vimrc
46
+rm -f ~/.gvimrc
47
ln -s ${mydir} ~/.vim
48
ln -s ${mydir}/vimrc ~/.vimrc
49
+ln -s ${mydir}/gvimrc ~/.gvimrc
vimrc
@@ -7,3 +7,5 @@ call pathogen#runtime_append_all_bundles()
7
" --------
8
filetype on
9
filetype plugin indent on
10
11
+runtime local.vim
0 commit comments