diff options
Diffstat (limited to 'nvim/lsp/flux_lsp.lua')
| -rwxr-xr-x | nvim/lsp/flux_lsp.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/lsp/flux_lsp.lua b/nvim/lsp/flux_lsp.lua new file mode 100755 index 0000000..642eabf --- /dev/null +++ b/nvim/lsp/flux_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/influxdata/flux-lsp +--- `flux-lsp` can be installed via `cargo`: +--- ```sh +--- cargo install --git https://github.com/influxdata/flux-lsp +--- ``` +return { + cmd = { 'flux-lsp' }, + filetypes = { 'flux' }, + root_markers = { '.git' }, +} |
