nvim/lua/custom/plugins/lsp-zero.lua
Simon Lasbrugnas 4fabec4249
feat: cleanup config
Change folder architecture and separate all plugins into their own files
2024-11-09 20:37:37 +01:00

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" },
}
}