aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/configs.md28
-rw-r--r--doc/configs.txt20
2 files changed, 48 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md
index 87b1ae13..2e9b3ada 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -317,6 +317,7 @@ Nvim by running `:help lspconfig-all`.
- [thriftls](#thriftls)
- [tilt_ls](#tilt_ls)
- [tinymist](#tinymist)
+- [tombi](#tombi)
- [ts_ls](#ts_ls)
- [ts_query_ls](#ts_query_ls)
- [tsp_server](#tsp_server)
@@ -11807,6 +11808,33 @@ Default config:
---
+## tombi
+
+https://tombi-toml.github.io/tombi/
+
+Language server for Tombi, a TOML toolkit.
+
+Snippet to enable the language server:
+```lua
+vim.lsp.enable('tombi')
+```
+
+Default config:
+- `cmd` :
+ ```lua
+ { "tombi", "lsp" }
+ ```
+- `filetypes` :
+ ```lua
+ { "toml" }
+ ```
+- `root_markers` :
+ ```lua
+ { "tombi.toml", "pyproject.toml", ".git" }
+ ```
+
+---
+
## ts_ls
https://github.com/typescript-language-server/typescript-language-server
diff --git a/doc/configs.txt b/doc/configs.txt
index f752cd48..c91c629f 100644
--- a/doc/configs.txt
+++ b/doc/configs.txt
@@ -8733,6 +8733,26 @@ Default config:
<
------------------------------------------------------------------------------
+tombi
+
+https://tombi-toml.github.io/tombi/
+
+Language server for Tombi, a TOML toolkit.
+
+Snippet to enable the language server: >lua
+ vim.lsp.enable('tombi')
+
+
+Default config:
+- cmd: >lua
+ { "tombi", "lsp" }
+- filetypes: >lua
+ { "toml" }
+- root_markers: >lua
+ { "tombi.toml", "pyproject.toml", ".git" }
+<
+
+------------------------------------------------------------------------------
ts_ls
https://github.com/typescript-language-server/typescript-language-server