From 3ff49b25676f73e47e8503a0dc3aec54b42cad00 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Tue, 1 Apr 2025 18:25:38 +0200 Subject: [PATCH] feat!(lsp): move ltex-ls-plus to neovim native LSP config - BREAKING CHANGE: need neovim >0.11 - https://neovim.io/doc/user/news-0.11.html#_lsp --- lsp/ltex_plus.lua | 56 +++++++++++++++++++++++++++++++++++++++++++++++ lua/lsp.lua | 39 +++------------------------------ 2 files changed, 59 insertions(+), 36 deletions(-) create mode 100644 lsp/ltex_plus.lua diff --git a/lsp/ltex_plus.lua b/lsp/ltex_plus.lua new file mode 100644 index 0000000..3854d24 --- /dev/null +++ b/lsp/ltex_plus.lua @@ -0,0 +1,56 @@ +local language_id_mapping = { + bib = 'bibtex', + pandoc = 'markdown', + plaintex = 'tex', + rnoweb = 'rsweave', + rst = 'restructuredtext', + tex = 'latex', + text = 'plaintext', +} + +local function get_language_id(_, filetype) + return language_id_mapping[filetype] or filetype +end + +return { + cmd = { 'ltex-ls-plus' }, + filetypes = { + 'markdown', + 'pandoc', + 'latex', + 'text', + 'norg', + 'gitcommit', + 'jj', + 'rst', + 'typst' + }, + get_language_id = get_language_id, + single_file_support = true, + settings = { + ltex = { + language = "auto", + diagnosticSeverity = "information", + checkFrequency = "save", + sentenceCacheSize = 2000, + additionalRules = { + enablePickyRules = true, + motherTongue = "fr", + }, + enabledRules = { + en = { "EN_CONSISTENT_APOS" }, + }, + disabledRules = { + fr = { "APOS_TYP", "FRENCH_WHITESPACE", "CHANGE", "ISSUE" }, + en = { "DASH_RULE", "TWO_HYPHENS", "CHANGE", "ISSUE", "CHECK", + "ACTUALLY", "CONSISTENT" }, + }, + dictionary = { + fr = { "CryptPad", "Chouhartem", + -- field names + "authors", "categories", "created", "updated", "title", "meta" }, + en = { "CryptPad", }, + } + } + } +} diff --git a/lua/lsp.lua b/lua/lsp.lua index 2be0256..857fc66 100644 --- a/lua/lsp.lua +++ b/lua/lsp.lua @@ -154,42 +154,6 @@ servers = { } }, gdscript = {}, - ltex_plus = { - filetypes = { - 'markdown', - 'latex', - 'text', - 'norg', - 'gitcommit', - 'jj', - 'rst', - 'typst' - }, - ltex = { - language = "auto", - diagnosticSeverity = "information", - checkFrequency = "save", - sentenceCacheSize = 2000, - additionalRules = { - enablePickyRules = true, - motherTongue = "fr", - }, - enabledRules = { - en = { "EN_CONSISTENT_APOS" }, - }, - disabledRules = { - fr = { "APOS_TYP", "FRENCH_WHITESPACE", "CHANGE", "ISSUE" }, - en = { "DASH_RULE", "TWO_HYPHENS", "CHANGE", "ISSUE", "CHECK", - "ACTUALLY", "CONSISTENT" }, - }, - dictionary = { - fr = { "CryptPad", "Chouhartem", - -- field names - "authors", "categories", "created", "updated", "title", "meta" }, - en = { "CryptPad", }, - } - } - }, } for server_name, server_settings in pairs(servers) do @@ -222,4 +186,7 @@ local setup_godot_dap = function() } end +vim.diagnostic.config({ virtual_lines = true }) +vim.lsp.enable({ "ltex_plus" }) + setup_godot_dap()