I've got alot of plugins enabled when using vim which I've collected over the years. I'm a bit fed up with how long vim takes to start now so I'd like to profile it's startup and see which of the many plugins I have are responsible. Is there anyway to profile vim startup or script running? Ideally I'd like to know how long vim spent in each vim script it loads.
|
If you're using Vim 7.2.269 or later, then there's the --startuptime option you can use.
from the help (
|
|||||||
|
|
You could run
You might have to blindly type :q to get back to your prompt. Afterwards, you should find the file If you can do with a granularity of a second, you can do this:
|
||||
|
You can use vim own profiling mechanism:
After running the above you will find a file called profile.log in the current directory with all required information. To get per-script information table similar to already present per-function one, use (after opening this file in vim):
It will be unsorted, but you can always use built-in |
|||||||
|
|
I refined the vim -V solution by Manni to show the delta time:
|
||||
|
If you're loading your plugins from a .vimrc file, what you could do is put a
This is not elegant but I think it will get the job done. |
|||
|
|
There is a plugin to profile the vim start-up time. |
|||
|
|
|
Isn't there a bash
EDIT: Doesn't include the scripts start up time. Use @jamessan suggestion instead. |
||||

