Updated faq (markdown)

Junegunn Choi 2024-03-15 23:15:37 +09:00
parent d53e9c2b8b
commit 9886b4ba1b

2
faq.md

@ -10,7 +10,7 @@ _"Premature optimization is the root of all evil."_
You most likely don't need them at all. A properly implemented Vim plugin should already load lazily without any help from the plugin manager (`:help autoload`). There are very few cases where those options actually make much sense. On-demand loading should only be used as the last resort. It is basically a hacky workaround and is not always guaranteed to work.
Before applying the options, make sure that you're tackling the right problem by breaking down the startup of time of Vim using `--startuptime`. See if there are plugins that take more than a few milliseconds to load.
Before applying the options, make sure that you're tackling the right problem by breaking down the startup time of Vim using `--startuptime`. See if there are plugins that take more than a few milliseconds to load.
```sh
vim --startuptime /tmp/log