Move lsp config to local file structure

This commit is contained in:
Never Gude 2026-01-15 17:18:59 +01:00
parent e5c3bb2492
commit 20801272fc
383 changed files with 11829 additions and 114 deletions

View file

@ -0,0 +1,18 @@
---@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' },
}