From 467a7a55d3f4744f2ae727acf6599eae41a2243f Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Tue, 19 Nov 2024 16:00:02 -0500 Subject: [PATCH] AutoYADM commit: 2024-11-19 16:00:02 --- .config/nvim/lua/plugins/ltex-ls.lua | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/ltex-ls.lua b/.config/nvim/lua/plugins/ltex-ls.lua index 729a994f..71ba7727 100644 --- a/.config/nvim/lua/plugins/ltex-ls.lua +++ b/.config/nvim/lua/plugins/ltex-ls.lua @@ -1,7 +1,31 @@ return { { "neovim/nvim-lspconfig", - opts = {}, + opts = { + servers = { + ltex = { + settings = { + ltex = { + language = "en", + enabled = { + "latex", + "tex", + "bib", + "md", + "markdown", + }, + -- checkFrequency = { "save" }, + -- diagnosticSeverity = "information", + -- sentencetCacheSize = 5000, + -- additionalRules = { + -- enablePickyRules = true, + -- motherTongue = "en", + -- }, + }, + }, + }, + }, + }, }, { "williamboman/mason-lspconfig.nvim",