mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02:00
14 lines
260 B
Lua
14 lines
260 B
Lua
---@brief
|
|
---
|
|
--- https://tombi-toml.github.io/tombi/
|
|
---
|
|
--- Language server for Tombi, a TOML toolkit.
|
|
---
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'tombi', 'lsp' },
|
|
filetypes = { 'toml' },
|
|
root_markers = { 'tombi.toml', 'pyproject.toml', '.git' },
|
|
}
|