marleyvim/lua/plugins/nvim-lspconfig.lua

23 lines
389 B
Lua
Raw Normal View History

2025-03-02 17:53:12 +00:00
return {
{
'neovim/nvim-lspconfig',
opts = {
servers = {
2025-03-15 20:34:52 +00:00
html = {
filetypes = { 'html', 'liquid' },
},
2025-03-02 17:53:12 +00:00
nil_ls = {
settings = {
['nil'] = {
flake = {
autoArchive = true,
autoEvalInputs = true,
},
},
},
},
},
},
},
}