-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode.json
More file actions
76 lines (72 loc) · 2.23 KB
/
vscode.json
File metadata and controls
76 lines (72 loc) · 2.23 KB
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
75
76
{
// Workbench
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Halcyon",
"workbench.editor.labelFormat": "short",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.untitled.hint": "hidden",
// Editor settings
"editor.wordWrap": "on",
"editor.fontSize": 12,
"editor.lineHeight": 20,
"terminal.integrated.fontSize": 12,
"editor.tabSize": 2,
"editor.fontFamily": "JetBrains Mono, Fira Code",
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [80, 120],
"editor.parameterHints.enabled": false,
"editor.semanticHighlighting.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
// VSCode stuff
"breadcrumbs.enabled": true,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
// Emmet
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
// Extensions
"extensions.ignoreRecommendations": true,
"diffEditor.ignoreTrimWhitespace": false,
"material-icon-theme.folders.associations": {
"domain": "core",
"infra": "app",
"main": "public",
"presentation": "connection",
"cryptography": "secure",
"entities": "class",
"repositories": "mappings",
"protocols": "resource",
"useCases": "components",
"subcomponents": "components",
"adapters": "connection",
"factories": "container",
"globals": "global",
"ui": "views"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
".lintstagedrc.json": "tune"
},
"polacode.transparentBackground": true,
"polacode.shadow": "none",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": false
},
"gitlens.defaultDateFormat": null,
"gitlens.hovers.currentLine.over": "line",
"liveServer.settings.donotShowInfoMsg": true,
"git.confirmSync": false,
"editor.inlineSuggest.enabled": true,
"workbench.activityBar.location": "hidden",
}