nvim/lua/custom/plugins/lsp-zero.lua
2024-11-11 02:50:42 +01:00

17 lines
395 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" },
}
}