dotfiles/vim/.vimrc

9 lines
230 B
VimL
Raw Normal View History

2018-10-02 21:41:43 +01:00
" ==================================================
2022-08-21 23:35:43 +01:00
" Source the files ~/.vim/rc.d/
2018-10-02 21:41:43 +01:00
" ==================================================
2022-08-21 23:35:43 +01:00
for f in split(glob('~/.vim/rc.d/*.vim'), '\n')
exe 'source' f
endfor
2018-10-02 21:41:43 +01:00
" vim:set et sw=2: