-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode
74 lines (70 loc) · 1.98 KB
/
vscode
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"editor.fontSize": 16,
"terminal.integrated.fontSize": 16,
"editor.inlineSuggest.enabled": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"editor.minimap.enabled": false,
"window.menuBarVisibility": "toggle",
// vim
"vim.leader": "<space>",
"vim.useSystemClipboard": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<Leader>", "b"],
"commands": ["workbench.action.navigateLast"]
},
{
"before": ["<Leader>", "e", "f"],
"commands": ["references-view.findReferences"]
},
{
"before": ["<Leader>", "c", "f"],
"commands": ["testing.debugAtCursor"]
},
{
"before": ["<Leader>", "c", "t"],
"commands": ["testing.debugCurrentFile"]
}
],
// disable vertical ruler which highlight a certain width of the input file
"editor.rulers": [],
"workbench.colorTheme": "Tomorrow Night",
"editor.tokenColorCustomizations": {
"keywords": "#b5bd68",
"variables": "#c5c8c6",
"types": "#af92b9",
"numbers": "#af92b9"
},
"workbench.colorCustomizations": {
"editorInlayHint.foreground": "#a2a4a3",
"editorInlayHint.background": "#0000",
"errorLens.infoBackground": "#0000",
"editorCursor.foreground": "#d73bd7",
"editorCursor.background": "#000000"
},
"window.zoomLevel": 1,
"editor.guides.indentation": false,
"debug.allowBreakpointsEverywhere": true,
"workbench.editor.showTabs": false,
"workbench.statusBar.visible": false,
"editor.renderLineHighlight": "none",
"diffEditor.renderSideBySide": false,
"haskell.manageHLS": "GHCup",
}