mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01: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' },
|
|
}
|