-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (31 loc) · 902 Bytes
/
devcontainer.json
File metadata and controls
32 lines (31 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "Haskell Dev Container",
"image": "ghcr.io/lcamel/haskell-devcontainer:latest",
"customizations": {
"vscode": {
"extensions": [
"haskell.haskell"
],
"settings": {
// "haskell.manageHLS" should be set to "PATH".
// The following configuration is a workaround for the issue:
// https://github.com/haskell/vscode-haskell/issues/1332
"haskell.manageHLS": "GHCup",
"haskell.toolchain": {
"ghc": null,
"hls": null,
"stack": null,
"cabal": null
},
// Disable automatic GHCup upgrade.
"haskell.upgradeGHCup": false,
// Disable minimap to save screen space.
"editor.minimap.enabled": false
}
}
},
// Some Haskell code requires locale settings to process non-ASCII characters.
"containerEnv": {
"LC_ALL": "en_US.UTF-8"
}
}