We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57fadd4 commit b2130c7Copy full SHA for b2130c7
init.lua
@@ -365,8 +365,10 @@ require('lazy').setup({
365
'neovim/nvim-lspconfig',
366
dependencies = {
367
-- 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',
+ -- Mason must be loaded before its dependents so we need to set it up here.
+ -- NOTE: `opts = {}` is the same as calling `require('mason').setup({})`
370
+ { 'mason-org/mason.nvim', opts = {} },
371
+ 'mason-org/mason-lspconfig.nvim',
372
'WhoIsSethDaniel/mason-tool-installer.nvim',
373
374
-- Useful status updates for LSP.
0 commit comments