Skip to content

Commit b2130c7

Browse files
guru245samsav
authored andcommitted
Change to Mason's new address (nvim-lua#1516)
1 parent 57fadd4 commit b2130c7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

init.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,10 @@ require('lazy').setup({
365365
'neovim/nvim-lspconfig',
366366
dependencies = {
367367
-- Automatically install LSPs and related tools to stdpath for Neovim
368-
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants
369-
'williamboman/mason-lspconfig.nvim',
368+
-- Mason must be loaded before its dependents so we need to set it up here.
369+
-- NOTE: `opts = {}` is the same as calling `require('mason').setup({})`
370+
{ 'mason-org/mason.nvim', opts = {} },
371+
'mason-org/mason-lspconfig.nvim',
370372
'WhoIsSethDaniel/mason-tool-installer.nvim',
371373

372374
-- Useful status updates for LSP.

0 commit comments

Comments
 (0)