-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_settings.json
39 lines (39 loc) · 1.32 KB
/
vscode_settings.json
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
33
34
35
36
37
38
39
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 12,
"workbench.statusBar.visible": true,
"window.menuBarVisibility": "hidden",
"git.confirmSync": false,
"vim.disableAnnoyingNeovimMessage": true,
"vim.hlsearch": true,
"vim.searchHighlightColor": "rgba(150, 150, 000, 0.9)",
"vim.autoindent": true,
"git.enableSmartCommit": true,
"window.zoomLevel": 0,
"todohighlight.keywords": [
{
"text": "TODO",
"backgroundColor": "magenta",
},
{
"text": "console.log",
"color": "red",
"border": "1px solid red",
"borderRadius": "2px",
"backgroundColor": "rgba(0,0,0,.2)",
}
],
"rust.rustup": {
"toolchain": "nightly-x86_64-unknown-linux-gnu",
"nightlyToolchain": "nightly-x86_64-unknown-linux-gnu"
},
//"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.fontSize": 12,
"editor.minimap.enabled": false,
"telemetry.enableTelemetry": false,
"haskelly.buttons.stackTest": false,
"haskelly.codeCompletion": false,
"haskelly.runFile": false,
"haskelly.quickCheck": false,
"haskelly.exec.reuseTerminal": false,
}