diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-05-25 06:05:51 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-05-25 06:05:51 +0000 |
| commit | 3ea99227e316c5028f57a4d86a1a7fd01dd876d0 (patch) | |
| tree | e8920fc5db2879df854cd959475c4320e38f752b | |
| parent | feat(lsp): update root markers for Tombi language server (diff) | |
| download | nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.tar nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.tar.gz nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.tar.bz2 nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.tar.lz nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.tar.xz nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.tar.zst nvim-lspconfig-3ea99227e316c5028f57a4d86a1a7fd01dd876d0.zip | |
docs: update configs.mdv2.2.0
skip-checks: true
| -rw-r--r-- | doc/configs.md | 28 | ||||
| -rw-r--r-- | doc/configs.txt | 20 |
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 |
