File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -317,6 +317,7 @@ Nvim by running `:help lspconfig-all`.
317
317
- [ thriftls] ( #thriftls )
318
318
- [ tilt_ls] ( #tilt_ls )
319
319
- [ tinymist] ( #tinymist )
320
+ - [ tombi] ( #tombi )
320
321
- [ ts_ls] ( #ts_ls )
321
322
- [ ts_query_ls] ( #ts_query_ls )
322
323
- [ tsp_server] ( #tsp_server )
@@ -11807,6 +11808,33 @@ Default config:
11807
11808
11808
11809
---
11809
11810
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
+
11810
11838
## ts_ls
11811
11839
11812
11840
https://github.com/typescript-language-server/typescript-language-server
Original file line number Diff line number Diff line change @@ -8732,6 +8732,26 @@ Default config:
8732
8732
{ ".git" }
8733
8733
<
8734
8734
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
+
8735
8755
------------------------------------------------------------------------------
8736
8756
ts_ls
8737
8757
You can’t perform that action at this time.
0 commit comments