Skip to content

Commit 6a871bb

Browse files
nvim: fixed mason-lspconfig dependencies
1 parent c45b28b commit 6a871bb

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.config/cvim/init/init.vim

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,14 +310,16 @@ elseif g:vimDistribution ==# g:VIM_FLAVOR_NEOVIM
310310
" Bridge layer between lspconfig and mason
311311
let cvim_plugins.mason_lspconfig = {
312312
\ 'name': 'mason-org/mason-lspconfig.nvim',
313-
\ 'dependencies': { 'mason-org/mason.nvim':{'lazy': 1} },
313+
\ 'dependencies': {
314+
\ 'mason-org/mason.nvim':{'lazy': 1},
315+
\ 'neovim/nvim-lspconfig':{'lazy': 1},
316+
\ },
314317
\ 'setting': "$HOME/.config/cvim/settings/nvim_mason-lspconfig.lua"
315318
\ }
316319
" lspconfig: LSP client config
317320
let cvim_plugins.lspconfig = {
318321
\ 'name': 'neovim/nvim-lspconfig',
319322
\ 'dependencies': {
320-
\ 'mason-org/mason-lspconfig.nvim':{'lazy': 1},
321323
\ 'hrsh7th/nvim-cmp':{'lazy': 1},
322324
\ },
323325
\ 'setting': "$HOME/.config/cvim/settings/nvim_lspconfig.lua"

0 commit comments

Comments
 (0)