home: vim: lspconfig: add 'harper'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

Support for more languages is upcoming, I also need to check how to
handle custom words/dictionaries.
This commit is contained in:
Bruno BELANYI 2025-03-24 16:51:45 +00:00
parent 6fc81e45e9
commit b2758839e8

View file

@ -96,6 +96,13 @@ if utils.is_executable("starpls") then
end end
-- Generic -- Generic
if utils.is_executable("harper-ls") then
lspconfig.harper_ls.setup({
capabilities = capabilities,
on_attach = lsp.on_attach,
})
end
if utils.is_executable("typos-lsp") then if utils.is_executable("typos-lsp") then
lspconfig.typos_lsp.setup({ lspconfig.typos_lsp.setup({
capabilities = capabilities, capabilities = capabilities,