diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.md | 40 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 40 |
2 files changed, 80 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 82654092..54f73385 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -249,6 +249,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [svls](#svls) - [swift_mesonls](#swift_mesonls) - [syntax_tree](#syntax_tree) +- [tabby_ml](#tabby_ml) - [tailwindcss](#tailwindcss) - [taplo](#taplo) - [tblgen_lsp_server](#tblgen_lsp_server) @@ -10929,6 +10930,45 @@ require'lspconfig'.syntax_tree.setup{} ``` +## tabby_ml + +https://tabby.tabbyml.com/blog/running-tabby-as-a-language-server + +Language server for Tabby, an opensource, self-hosted AI coding assistant. + +`tabby-agent` can be installed via `npm`: + +```sh +npm install --global tabby-agent +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.tabby_ml.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "tabby-agent", "--lsp", "--stdio" } + ``` + - `filetypes` : + ```lua + {} + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + true + ``` + + ## tailwindcss https://github.com/tailwindlabs/tailwindcss-intellisense diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 82654092..54f73385 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -249,6 +249,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [svls](#svls) - [swift_mesonls](#swift_mesonls) - [syntax_tree](#syntax_tree) +- [tabby_ml](#tabby_ml) - [tailwindcss](#tailwindcss) - [taplo](#taplo) - [tblgen_lsp_server](#tblgen_lsp_server) @@ -10929,6 +10930,45 @@ require'lspconfig'.syntax_tree.setup{} ``` +## tabby_ml + +https://tabby.tabbyml.com/blog/running-tabby-as-a-language-server + +Language server for Tabby, an opensource, self-hosted AI coding assistant. + +`tabby-agent` can be installed via `npm`: + +```sh +npm install --global tabby-agent +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.tabby_ml.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "tabby-agent", "--lsp", "--stdio" } + ``` + - `filetypes` : + ```lua + {} + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + true + ``` + + ## tailwindcss https://github.com/tailwindlabs/tailwindcss-intellisense |
