13 lines
292 B
Lua
13 lines
292 B
Lua
local M = { "neovim/nvim-lspconfig" }
|
|
|
|
M.dependencies = { "folke/neoconf.nvim", "mason-lspconfig.nvim" }
|
|
|
|
M.event = { "BufReadPre", "BufNewFile" }
|
|
|
|
M.cmd = function(_, cmds)
|
|
if require("funcs").is_available("neoconf.nvim") then
|
|
table.insert(cmds, "Neoconf")
|
|
end
|
|
end
|
|
|
|
return M
|