10 lines
191 B
VimL
10 lines
191 B
VimL
filetype off " required
|
|
|
|
source vimrc.plugins.vim
|
|
source vimrc.functions.vim
|
|
|
|
for f in split(glob('vimrc.d/*.vim'), '\n')
|
|
exe 'source' f
|
|
endfor
|
|
|
|
" vim: foldmethod=marker
|