I have split my .vimrc into several files and placed them into ~/vimfiles/vimrc.d/.

Currently I source each file in that directory using exact name:

source ~/vimfiles/vimrc.d/file1.vim
source ~/vimfiles/vimrc.d/file2.vim

etc.

How to make a loop thourgh all files in that directory so i could only have to do such loop in my .vimrc:

for file in ~/vimfiles/vimrc.d/*.vim
   source file
enfor
link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

As mb14 has already said, if you put them in ~/.vim/plugin they will be sourced automatically. For information, however, if you want to source all of the files in your vimrc.d directory, you could do this (requires a relatively recent Vim):

for f in split(glob('~/vimfiles/vimrc.d/*.vim'), '\n')
    exe 'source' f
endfor

You may also be interested in the autoload mechanism, described in :help 41.15: if you're defining a lot of functions, this can make start-up a bit quicker as the functions are only loaded the first time they're used.

link|improve this answer
feedback

You can just put your files in the plugins directory (~/.vim/plugin). They will be automatically loaded.

link|improve this answer
feedback

mb14 gave you the best answer. You want something automatically executed ? Then use the standard organization: here the plugin/ subdirectoy.

Otherwise, :runtime would have been your friend:

:runtime! vimrc.d/*.vim
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.