nvim/lsp/flux_lsp.lua
2025-09-22 16:07:34 +02:00

14 lines
298 B
Lua

---@brief
---
--- https://github.com/influxdata/flux-lsp
--- `flux-lsp` can be installed via `cargo`:
--- ```sh
--- cargo install --git https://github.com/influxdata/flux-lsp
--- ```
---@type vim.lsp.Config
return {
cmd = { 'flux-lsp' },
filetypes = { 'flux' },
root_markers = { '.git' },
}