Files
dotfiles/.config/nvim/lua/plugins/lsp_config.lua

42 lines
650 B
Lua

return {
-- LSP Support
-- {
-- 'VonHeikemen/lsp-zero.nvim',
-- branch = "v3.x",
-- lazy = true,
-- config = false,
-- },
{
"neovim/nvim-lspconfig",
-- dependencies = {
-- {"hrsh7th/cmp-nvim-lsp"},
-- },
lazy = true,
},
{
"williamboman/mason.nvim",
lazy = true,
},
{
"williamboman/mason-lspconfig.nvim",
lazy = true,
},
{
"mfussenegger/nvim-lint",
lazy = false,
},
-- supposedly faster formatter
{
"stevearc/conform.nvim",
opts = {},
},
-- Autocompletion
-- {
-- "hrsh7th/nvim-cmp",
-- dependencies = {
-- {"L3MON4D3/LuaSnip"}
-- },
-- lazy = true,
-- },
}