If you start up vim with something like this:

vim -S myscript.vim file.txt

What is the load order of scripts? Does myscript.vim get loaded after or before ~/.vimrc.

If you pass in vimscript commands to vim directly on the command line, when do they get executed relative to sourced and default vimscripts?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

The help entry is way too long to post here, but it lists the order of everything that vim does at initialization. See :help initialization.

link|improve this answer
feedback

I believe vimrc is always first. You can run :scriptnames to get a list of sourced scripts in order in which they were first sourced in your Vim instance.

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.