aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/hare_lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/hare_lsp.lua')
-rw-r--r--lsp/hare_lsp.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lsp/hare_lsp.lua b/lsp/hare_lsp.lua
new file mode 100644
index 00000000..0ee9a383
--- /dev/null
+++ b/lsp/hare_lsp.lua
@@ -0,0 +1,13 @@
+---@brief
+---
+--- https://sr.ht/~whynothugo/hare-lsp/
+---
+--- Language server for hare.
+
+---@type vim.lsp.Config
+return {
+ cmd = { 'hare-lsp', '-S' },
+ filetypes = { 'hare' },
+ root_markers = { '.git' },
+ workspace_required = false,
+}