neovim -> hls

This commit is contained in:
2024-03-16 15:30:36 +01:00
parent 8ebab2e50e
commit 92e2a393c9
2 changed files with 22 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 }
}
}
}
}
}