Browse Source

Clarify `NVM_LAZY_LOAD` must be set before `zsh-nvm` is loaded

pull/5/head
Luke Childs 8 years ago
parent
commit
f0709a21bb
  1. 4
      README.md

4
README.md

@ -56,7 +56,9 @@ Note: If `nvm` doesn't exist in this directory it'll be automatically installed
### Lazy Loading
If you find `nvm` adds too much lag to your shell startup you can enable lazy loading by exporting the `NVM_LAZY_LOAD` environment variable and setting it to `true`. Lazy loading is around 70 times faster to load, however the first time you run `nvm`, `npm`, `node` or a global module you'll get a slight delay while `nvm` loads first. You'll only get this delay once per session.
If you find `nvm` adds too much lag to your shell startup you can enable lazy loading by exporting the `NVM_LAZY_LOAD` environment variable and setting it to `true`. It must be set before `zsh-nvm` is loaded.
Lazy loading is around 70 times faster to load, however the first time you run `nvm`, `npm`, `node` or a global module you'll get a slight delay while `nvm` loads first. You'll only get this delay once per session.
For example, if you are using antigen, you would put the following in your `.zshrc`:

Loading…
Cancel
Save