aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 16 insertions, 3 deletions
diff --git a/README.md b/README.md
index f1569b1e..c9828452 100644
--- a/README.md
+++ b/README.md
@@ -90,13 +90,26 @@ your personal usage, some of these will also need to be installed. Refer to `:ch
## [Packer](https://github.com/wbthomason/packer.nvim)
```lua
-use "williamboman/mason.nvim"
+use {
+ "williamboman/mason.nvim",
+ run = ":MasonUpdate" -- :MasonUpdate updates registry contents
+}
+```
+
+## [lazy.nvim](https://github.com/folke/lazy.nvim)
+
+```lua
+{
+ "williamboman/mason.nvim",
+ build = ":MasonUpdate" -- :MasonUpdate updates registry contents
+}
```
-## vim-plug
+## [vim-plug](https://github.com/junegunn/vim-plug)
```vim
-Plug 'williamboman/mason.nvim'
+" :MasonUpdate updates registry contents
+Plug 'williamboman/mason.nvim', { 'do': ':MasonUpdate' }
```
# Setup