heavim/vimrc

34 lines
1.1 KiB
VimL
Raw Permalink Normal View History

" Main VIM configuration file: only serves as a loader
" If another runtime directory is specified, use it
let s:own_path = expand( '<sfile>:p:h' )
let $VIM_HOME = $VIM_HOME == '' ? ''
\ : fnamemodify( $VIM_HOME . '/x' , ':p:h' )
2015-02-22 11:43:04 +01:00
if $VIM_HOME == '' || $VIM_HOME == s:own_path
2015-02-22 11:43:04 +01:00
" Default configuration directory
let $VIM_HOME = s:own_path
let g:vim_home = fnameescape( $VIM_HOME )
let g:vim_vimrc = fnameescape( $VIM_HOME . '/vimrc' )
else
2015-02-22 11:43:04 +01:00
" Use another configuration directory
let g:vim_home = fnameescape( $VIM_HOME )
let g:vim_vimrc = fnameescape( $VIM_HOME . '/vimrc' )
2015-02-22 11:43:04 +01:00
let &rtp = printf(
\ '%s/vimfiles,%s,%s,%s/vimfiles/after,%s/after' ,
\ $VIM , $VIMRUNTIME , g:vim_home , $VIM , g:vim_home )
if filereadable( g:vim_vimrc )
execute 'source ' . g:vim_vimrc
endif
finish
endif
2015-02-23 22:11:15 +01:00
" 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'
2015-03-13 11:20:55 +01:00
let s:cfg_files = glob( s:cfg_bits_path . '/??-?*.vim' , 0 , 1 )
for s:cfg_file in sort( s:cfg_files )
execute 'source ' . s:cfg_file
endfor