aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/ghcide.lua
blob: 39d4e47201d223155e867669b4d93f2a14228294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@brief
---
--- https://github.com/digital-asset/ghcide
---
--- A library for building Haskell IDE tooling.
--- "ghcide" isn't for end users now. Use "haskell-language-server" instead of "ghcide".

---@type vim.lsp.Config
return {
  cmd = { 'ghcide', '--lsp' },
  filetypes = { 'haskell', 'lhaskell' },
  root_markers = { 'stack.yaml', 'hie-bios', 'BUILD.bazel', 'cabal.config', 'package.yaml' },
}