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