summaryrefslogtreecommitdiff
path: root/nvim/lsp/textlsp.lua
diff options
context:
space:
mode:
authoranand <anand.panchdhari@gmail.com>2025-12-17 15:57:55 +0530
committeranand <anand.panchdhari@gmail.com>2025-12-17 15:57:55 +0530
commitb7ef29a8886a57aadb787807a7c6cf74c1f0ed3a (patch)
tree366a68240fbc9da6b1d567bd6c46d1350ad814de /nvim/lsp/textlsp.lua
Nixos
Diffstat (limited to 'nvim/lsp/textlsp.lua')
-rwxr-xr-xnvim/lsp/textlsp.lua43
1 files changed, 43 insertions, 0 deletions
diff --git a/nvim/lsp/textlsp.lua b/nvim/lsp/textlsp.lua
new file mode 100755
index 0000000..5a95a0e
--- /dev/null
+++ b/nvim/lsp/textlsp.lua
@@ -0,0 +1,43 @@
+---@brief
+---
+--- https://github.com/hangyav/textLSP
+---
+--- `textLSP` is an LSP server for text spell and grammar checking with various AI tools.
+--- It supports multiple text file formats, such as LaTeX, Org or txt.
+---
+--- For the available text analyzer tools and their configuration, see the [GitHub](https://github.com/hangyav/textLSP) page.
+--- By default, all analyzers are disabled in textLSP, since most of them need special settings.
+--- For quick testing, LanguageTool is enabled in the default `nvim-lspconfig` configuration.
+---
+--- To install run: `pip install textLSP`
+return {
+ cmd = { 'textlsp' },
+ filetypes = { 'text', 'tex', 'org' },
+ root_markers = { '.git' },
+ settings = {
+ textLSP = {
+ analysers = {
+ -- by default all analysers are disabled in textLSP, since many of them
+ -- need custom settings. See github page. LanguageTool is enaled here
+ -- only for a quick test.
+ languagetool = {
+ enabled = true,
+ check_text = {
+ on_open = true,
+ on_save = true,
+ on_change = false,
+ },
+ },
+ },
+ documents = {
+ org = {
+ org_todo_keywords = {
+ 'TODO',
+ 'IN_PROGRESS',
+ 'DONE',
+ },
+ },
+ },
+ },
+ },
+}