18 lines
440 B
Lua
18 lines
440 B
Lua
return {
|
|
"folke/neoconf.nvim",
|
|
lazy = false, -- load early so it can influence lspconfig later
|
|
priority = 1000,
|
|
opts = {
|
|
live_reload = true,
|
|
filetype_jsonc = true,
|
|
plugins = {
|
|
lspconfig = { enabled = true },
|
|
jsonls = { enabled = true, configured_servers_only = false },
|
|
lua_ls = { enabled_for_neovim_config = true },
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
require("neoconf").setup(opts)
|
|
end,
|
|
}
|