13 lines
260 B
Lua
13 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' },
|
|
}
|