Re-organised configuration files

This commit is contained in:
Emmanuel BENOîT 2015-02-23 22:11:15 +01:00
parent 2d7eff306a
commit 34f84c9155
13 changed files with 54 additions and 40 deletions

5
vimrc
View file

@ -24,8 +24,9 @@ else
finish
endif
" Execute configuration in config-bits
let s:cfg_bits_path = g:vim_home . '/config-bits'
" Execute configuration in cfg-pre/, which should in turn execute the main
" configuration in cfg/
let s:cfg_bits_path = g:vim_home . '/cfg-pre'
let s:cfg_files = glob( s:cfg_bits_path . '/??-?*.vim' )
for s:cfg_file in sort( split( s:cfg_files , "\n" ) )
execute 'source ' . s:cfg_file