update neovim

This commit is contained in:
Gene Liverman 2024-11-18 22:26:22 -05:00
parent e0fe58c2c7
commit 2423fdebb6

View file

@ -12,7 +12,7 @@ return {
"lua_ls", -- lua "lua_ls", -- lua
"nil_ls", -- nix "nil_ls", -- nix
"puppet", -- puppet "puppet", -- puppet
"ruff_lsp", -- python "ruff", -- python
}, },
}) })
end, end,
@ -59,7 +59,7 @@ return {
cmd = { puppet_languageserver, "--feature-flags=puppetstrings" }, cmd = { puppet_languageserver, "--feature-flags=puppetstrings" },
settings = { puppet = { editorServices = { formatOnType = { enable = true } } } }, settings = { puppet = { editorServices = { formatOnType = { enable = true } } } },
}) })
lspconfig.ruff_lsp.setup({ on_attach = on_attach }) lspconfig.ruff.setup({ on_attach = on_attach })
end, end,
}, },
} }