summaryrefslogtreecommitdiff
path: root/nvim/lsp/flux_lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lsp/flux_lsp.lua')
-rwxr-xr-xnvim/lsp/flux_lsp.lua12
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' },
+}