mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
19 lines
406 B
Lua
19 lines
406 B
Lua
---@brief
|
|
---
|
|
--- 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
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'tabby-agent', '--lsp', '--stdio' },
|
|
filetypes = {},
|
|
root_markers = { '.git' },
|
|
}
|