1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/lsp/lspconfig.lua
2024-01-24 00:48:37 +01:00

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