aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/textlsp.lua
diff options
context:
space:
mode:
authorawy <awy@awy.one>2025-10-14 18:27:29 +0300
committerawy <awy@awy.one>2025-10-14 18:27:29 +0300
commitde009fd679e10d053fdcc10785f91ad5317449ea (patch)
tree60918a488b579588596cf4d509fde298dccbf15d /.config/nvim/lsp/textlsp.lua
parent9ea6cf81adb5d6abc59843de1db45913210f9320 (diff)
downloadhyprdots-de009fd679e10d053fdcc10785f91ad5317449ea.tar.gz
nvim revamp
Diffstat (limited to '.config/nvim/lsp/textlsp.lua')
-rw-r--r--.config/nvim/lsp/textlsp.lua45
1 files changed, 45 insertions, 0 deletions
diff --git a/.config/nvim/lsp/textlsp.lua b/.config/nvim/lsp/textlsp.lua
new file mode 100644
index 0000000..0a2b5ed
--- /dev/null
+++ b/.config/nvim/lsp/textlsp.lua
@@ -0,0 +1,45 @@
+---@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`
+
+---@type vim.lsp.Config
+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',
+ },
+ },
+ },
+ },
+ },
+}