Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Add default configuration for Haskell LSP #1918

Merged
merged 1 commit into from
Mar 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions browser/src/Services/Configuration/DefaultConfiguration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@ const BaseConfiguration: IConfigurationValues = {
"language.ocaml.languageServer.arguments": ["--stdio"],
"language.ocaml.languageServer.configuration": ocamlAndReasonConfiguration,

"language.haskell.languageServer.command": "stack",
"language.haskell.languageServer.arguments": ["exec", "--", "hie", "--lsp"],
"language.haskell.languageServer.rootFiles": [".git"],
"language.haskell.languageServer.configuration": {},

"language.typescript.completionTriggerCharacters": [".", "/", "\\"],
"language.typescript.textMateGrammar": {
".ts": path.join(
Expand Down