aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/hare_lsp.lua
blob: 0ee9a383e2c9ec405cbc1a602a6e22e7e0689eec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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,
}