feat: add vale-ls

This commit is contained in:
Youwen Wu 2025-01-25 15:56:20 -08:00
parent 2a801cfd4e
commit f5c2ac81c7
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 4 additions and 0 deletions

View file

@ -80,6 +80,7 @@
nixd # nix language server
tinymist # Typst
marksman # markdown
vale-ls # prose
# formatters
nixfmt-rfc-style # recommended nix formatter

View file

@ -69,6 +69,9 @@ M.setup = function()
lspconfig.clangd.setup({})
lspconfig.mesonlsp.setup({})
lspconfig.nushell.setup({})
lspconfig.vale_ls.setup({
filetypes = { "markdown", "text", "tex", "rst", "typst" },
})
end
return M