diff options
Diffstat (limited to 'doc/configs.md')
| -rw-r--r-- | doc/configs.md | 28 |
1 files changed, 28 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 |
