diff options
Diffstat (limited to 'lsp/ghcide.lua')
| -rw-r--r-- | lsp/ghcide.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lsp/ghcide.lua b/lsp/ghcide.lua new file mode 100644 index 00000000..5d05e21f --- /dev/null +++ b/lsp/ghcide.lua @@ -0,0 +1,11 @@ +---@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". +return { + cmd = { 'ghcide', '--lsp' }, + filetypes = { 'haskell', 'lhaskell' }, + root_markers = { 'stack.yaml', 'hie-bios', 'BUILD.bazel', 'cabal.config', 'package.yaml' }, +} |
