diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -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 |
