mirror of https://github.com/gabehf/nvim-conf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
393 B
17 lines
393 B
return {
|
|
{
|
|
'williamboman/mason.nvim',
|
|
cmd = { "Mason", "MasonInstall", "MasonUpdate" },
|
|
config = function(_, opts_)
|
|
dofile(vim.g.base46_cache .. "mason")
|
|
require('mason').setup(opts)
|
|
end,
|
|
},
|
|
{'williamboman/mason-lspconfig.nvim'},
|
|
{'VonHeikemen/lsp-zero.nvim', branch = 'v3.x'},
|
|
{'neovim/nvim-lspconfig'},
|
|
{'hrsh7th/cmp-nvim-lsp'},
|
|
{'hrsh7th/nvim-cmp'},
|
|
{'L3MON4D3/LuaSnip'},
|
|
}
|