forked from astrails/dotvim
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathafter.vim
More file actions
25 lines (20 loc) · 663 Bytes
/
after.vim
File metadata and controls
25 lines (20 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
" This file is loaded from after/plugin/after.vim
" which means it loads AFTER the rest of the plugins
source ~/.vim/bindings.vim
source ~/.vim/plugins-override.vim
if filereadable(expand("~/.local-after.vim"))
echo "~/.local-after.vim is deprecated, please move it to ~/.vimrc.after"
source ~/.local-after.vim
endif
if filereadable(expand("~/.vimrc.after"))
source ~/.vimrc.after
endif
if has('gui_running')
if filereadable(expand("~/.local-gui.vim"))
echo "~/.local-gui.vim is deprecated, please move it to ~/.gvimrc.after"
source ~/.local-gui.vim
endif
if filereadable(expand("~/.gvimrc.after"))
source ~/.gvimrc.after
endif
end