From 4e12137cffe437f1a2a5342ded49bc170bf50a7d Mon Sep 17 00:00:00 2001 From: benomahony Date: Sat, 27 Sep 2025 12:48:39 -0400 Subject: [PATCH] feat(lsp/vale-ls): add asciidoc filetype --- lsp/vale_ls.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsp/vale_ls.lua b/lsp/vale_ls.lua index 2021efae53..3fdfb5a37e 100644 --- a/lsp/vale_ls.lua +++ b/lsp/vale_ls.lua @@ -7,6 +7,6 @@ ---@type vim.lsp.Config return { cmd = { 'vale-ls' }, - filetypes = { 'markdown', 'text', 'tex', 'rst' }, + filetypes = { 'asciidoc', 'markdown', 'text', 'tex', 'rst' }, root_markers = { '.vale.ini' }, }