neovim -> hls fix

This commit is contained in:
2024-03-16 15:32:41 +01:00
parent 92e2a393c9
commit c38b8b4264
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
"filetypes": ["haskell", "lhaskell"],
// Settings are optional, here are some example values
"settings": {
"haskell": {
"checkParents": "CheckOnSave",
"checkProject": true,
"maxCompletions": 40,
"formattingProvider": "ormolu",
"plugin": {
"stan": { "globalOn": true }
}
}
}
}
}