diff options
author | Carlo <carlosalag@protonmail.com> | 2022-12-01 19:44:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 19:44:48 +0100 |
commit | 64bc22aee4d32eb64ee918fc9e63318b68979070 (patch) | |
tree | b9ec5e4e662e0ed022652578e7e148c330fbf509 /plugins/nvm/README.md | |
parent | a051eb04b88cb0a876d1f3d68559d228a14dccf0 (diff) | |
download | zsh-64bc22aee4d32eb64ee918fc9e63318b68979070.tar.gz zsh-64bc22aee4d32eb64ee918fc9e63318b68979070.tar.bz2 zsh-64bc22aee4d32eb64ee918fc9e63318b68979070.zip |
feat(nvm): add `silent-autoload` setting (#11363)
Co-authored-by: MichaĆ Regulski <regulskimichal@outlook.com>
Closes #10942
Diffstat (limited to 'plugins/nvm/README.md')
-rw-r--r-- | plugins/nvm/README.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/nvm/README.md b/plugins/nvm/README.md index 4c6312e6e..d3fd980be 100644 --- a/plugins/nvm/README.md +++ b/plugins/nvm/README.md @@ -48,5 +48,13 @@ If set, the plugin will automatically load a node version when if finds a version to load. This can be done, similar as previous options, adding: ```zsh -zstyle ':omz:plugins:nvm' autoload true +zstyle ':omz:plugins:nvm' autoload yes ``` + +To remove the output generated by NVM when autoloading, you can set the following option: + +```zsh +zstyle ':omz:plugins:nvm' silent-autoload yes +``` + +Note: _this will not remove regular `nvm` output_ |