mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
9 lines
344 B
VimL
9 lines
344 B
VimL
let s:my_config_dir = expand('<sfile>:p:h')
|
|
|
|
for s:name in ['plugins', 'editing', 'interface', 'colorscheme', 'files', 'completion', 'terminal', 'git']
|
|
execute 'source' fnameescape(s:my_config_dir.'/lib/'.s:name.'.vim')
|
|
endfor
|
|
|
|
for s:path in globpath(s:my_config_dir.'/lib/languages', '*', 0, 1)
|
|
execute 'source' fnameescape(s:path)
|
|
endfor
|