diff options
Diffstat (limited to '.config/nvim/lsp/flux_lsp.lua')
| -rw-r--r-- | .config/nvim/lsp/flux_lsp.lua | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/nvim/lsp/flux_lsp.lua b/.config/nvim/lsp/flux_lsp.lua new file mode 100644 index 0000000..c21319a --- /dev/null +++ b/.config/nvim/lsp/flux_lsp.lua @@ -0,0 +1,14 @@ +---@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' }, +}  |