diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-05 10:06:51 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-05 10:06:51 +0000 |
| commit | b1fc956fb28ee4284ae3e10fe886d01dd3c8f094 (patch) | |
| tree | b9cf7ee57bfa1a016da15e7b395226c6ff5f4ce4 | |
| parent | feat: add configuration for Tabby ML (#3050) (diff) | |
| download | nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.tar nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.tar.gz nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.tar.bz2 nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.tar.lz nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.tar.xz nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.tar.zst nvim-lspconfig-b1fc956fb28ee4284ae3e10fe886d01dd3c8f094.zip | |
docs: update server_configurations.md
skip-checks: true
| -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 |
