13 lines
344 B
Lua
13 lines
344 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
-- event = "InsertEnter",
|
|
-- cond = not require("commons").tools.is_version_gte_0_11(),
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
dependencies = {
|
|
{ "saghen/blink.cmp" },
|
|
{ "williamboman/mason.nvim" },
|
|
{ "williamboman/mason-lspconfig.nvim" }
|
|
},
|
|
config = function() require("functions.lsp") end,
|
|
}
|