11 lines
260 B
VimL
11 lines
260 B
VimL
" This loads after the yadr plugins so that plugin mappings can
|
|
" be overwritten.
|
|
|
|
if filereadable(expand("~/.yadr/vim/after/.vimrc.after"))
|
|
source ~/.yadr/vim/after/.vimrc.after
|
|
endif
|
|
|
|
if filereadable(expand("~/.vimrc.after"))
|
|
source ~/.vimrc.after
|
|
endif
|