mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-07 17:46:10 +02:00
38 lines
1.1 KiB
Lua
38 lines
1.1 KiB
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'hie-wrapper', '--lsp' },
|
|
filetypes = { 'haskell' },
|
|
root_dir = util.root_pattern('stack.yaml', 'package.yaml', '.git'),
|
|
},
|
|
|
|
docs = {
|
|
description = [[
|
|
https://github.com/haskell/haskell-ide-engine
|
|
|
|
the following init_options are supported (see https://github.com/haskell/haskell-ide-engine#configuration):
|
|
```lua
|
|
init_options = {
|
|
languageServerHaskell = {
|
|
hlintOn = bool;
|
|
maxNumberOfProblems = number;
|
|
diagnosticsDebounceDuration = number;
|
|
liquidOn = bool (default false);
|
|
completionSnippetsOn = bool (default true);
|
|
formatOnImportOn = bool (default true);
|
|
formattingProvider = string (default "brittany", alternate "floskell");
|
|
}
|
|
}
|
|
```
|
|
]],
|
|
},
|
|
}
|