18 lines
429 B
Lua
18 lines
429 B
Lua
return {
|
|
"VonHeikemen/lsp-zero.nvim",
|
|
config = function()
|
|
require("custom.lsp.config")
|
|
end,
|
|
dependencies = {
|
|
{ "neovim/nvim-lspconfig" },
|
|
{ "williamboman/mason-lspconfig.nvim" },
|
|
{ "folke/neodev.nvim" },
|
|
{ "hrsh7th/nvim-cmp" },
|
|
{ "hrsh7th/cmp-buffer" },
|
|
{ "hrsh7th/cmp-path" },
|
|
{ "saadparwaiz1/cmp_luasnip" },
|
|
{ "hrsh7th/cmp-nvim-lsp" },
|
|
{ "hrsh7th/cmp-nvim-lua" },
|
|
{ "ray-x/lsp_signature.nvim" },
|
|
}
|
|
}
|