-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvsc.json
45 lines (45 loc) · 1.36 KB
/
vsc.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
40
41
42
43
44
45
{
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"files.autoSave": "onFocusChange",
"editor.rulers": [
120
],
"editor.fontFamily": "'Pragmata Pro', Iosevka, 'Fira Code', monospace",
"editor.fontLigatures": true,
"editor.cursorStyle": "block",
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"editor.lineNumbers": "on",
"workbench.colorTheme": "Slime",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"css": "css"
},
"eslint.options": {
"configFile": "./NodeJsServices/transformator-service/.eslintrc.yml"
},
"window.zoomLevel": -1,
"files.associations": {
"*.css": "postcss"
},
"diffEditor.ignoreTrimWhitespace": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"todo-tree.defaultHighlight": {
"foreground": "green",
"type": "none"
},
"todo-tree.customHighlight": {
"TODO": {},
"FIXME": {}
},
"breadcrumbs.enabled": true,
"editor.renderControlCharacters": true,
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"editor.fontSize": 16,
"terminal.integrated.rendererType": "dom"
}