Skip to content

Commit 3ea9922

Browse files
docs: update configs.md
skip-checks: true
1 parent 565f571 commit 3ea9922

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

doc/configs.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ Nvim by running `:help lspconfig-all`.
317317
- [thriftls](#thriftls)
318318
- [tilt_ls](#tilt_ls)
319319
- [tinymist](#tinymist)
320+
- [tombi](#tombi)
320321
- [ts_ls](#ts_ls)
321322
- [ts_query_ls](#ts_query_ls)
322323
- [tsp_server](#tsp_server)
@@ -11807,6 +11808,33 @@ Default config:
1180711808

1180811809
---
1180911810

11811+
## tombi
11812+
11813+
https://tombi-toml.github.io/tombi/
11814+
11815+
Language server for Tombi, a TOML toolkit.
11816+
11817+
Snippet to enable the language server:
11818+
```lua
11819+
vim.lsp.enable('tombi')
11820+
```
11821+
11822+
Default config:
11823+
- `cmd` :
11824+
```lua
11825+
{ "tombi", "lsp" }
11826+
```
11827+
- `filetypes` :
11828+
```lua
11829+
{ "toml" }
11830+
```
11831+
- `root_markers` :
11832+
```lua
11833+
{ "tombi.toml", "pyproject.toml", ".git" }
11834+
```
11835+
11836+
---
11837+
1181011838
## ts_ls
1181111839

1181211840
https://github.com/typescript-language-server/typescript-language-server

doc/configs.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8732,6 +8732,26 @@ Default config:
87328732
{ ".git" }
87338733
<
87348734

8735+
------------------------------------------------------------------------------
8736+
tombi
8737+
8738+
https://tombi-toml.github.io/tombi/
8739+
8740+
Language server for Tombi, a TOML toolkit.
8741+
8742+
Snippet to enable the language server: >lua
8743+
vim.lsp.enable('tombi')
8744+
8745+
8746+
Default config:
8747+
- cmd: >lua
8748+
{ "tombi", "lsp" }
8749+
- filetypes: >lua
8750+
{ "toml" }
8751+
- root_markers: >lua
8752+
{ "tombi.toml", "pyproject.toml", ".git" }
8753+
<
8754+
87358755
------------------------------------------------------------------------------
87368756
ts_ls
87378757

0 commit comments

Comments
 (0)