11 lines
244 B
Lua
11 lines
244 B
Lua
---@brief
|
|
---
|
|
--- [OpenTofu Language Server](https://github.com/opentofu/tofu-ls)
|
|
---
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'tofu-ls', 'serve' },
|
|
filetypes = { 'opentofu', 'opentofu-vars' },
|
|
root_markers = { '.terraform', '.git' },
|
|
}
|