-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode-settings.json
137 lines (137 loc) · 4.78 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"breadcrumbs.enabled": false,
"conventionalCommits.emojiFormat": "emoji",
"cSpell.language": "en,da",
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Dank Mono, JetBrains Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": "active",
"editor.inlineSuggest.enabled": true,
"editor.lineNumbers": "off",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.rulers": [80],
"editor.suggestSelection": "first",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"emphasis",
"entity.name.class.js",
"entity.name.method.js",
"entity.name.tag.doctype",
"entity.other.attribute-name.tag.jade",
"entity.other.attribute-name.tag.pug",
"entity.other.attribute-name",
"italic",
"keyword.control.class.ruby",
"keyword.control.def.ruby",
"keyword.control.flow.js",
"keyword.control.flow.ts",
"keyword.control.flow.tsx",
"keyword.control.from.js",
"keyword.control.from.ts",
"keyword.control.from.tsx",
"keyword.control.import.js",
"keyword.control.import.ts",
"keyword.control.import.tsx",
"keyword.control.loop.js",
"keyword.control.loop.ts",
"keyword.control.module.ruby",
"keyword.control.ruby",
"keyword.control",
"keyword.operator.cast",
"keyword.operator.comparison",
"keyword.operator.expression.delete",
"keyword.operator.expression",
"keyword.operator.logical.python",
"keyword.operator.new",
"keyword.operator.relational",
"keyword.operator.sizeof",
"keyword",
"markup.changed",
"markup.deleted.diff",
"markup.inserted.diff",
"markup.italic.markdown",
"markup.italic",
"markup.quote.markdown",
"markup.quote",
"meta.class meta.method.declaration meta.var.expr storage.type.js",
"meta.decorator punctuation.decorator",
"meta.delimiter.period",
"meta.diff.header.from-file",
"meta.diff.header.git",
"meta.diff.header.to-file",
"meta.selector",
"meta.tag.sgml.doctype",
"meta.var.expr",
"punctuation.accessor",
"punctuation.definition.comment",
"punctuation.definition.template-expression.begin",
"punctuation.definition.template-expression.end",
"punctuation.section.embedded",
"quote",
"source.go keyword.channel.go",
"source.go keyword.const.go",
"source.go keyword.control.go",
"source.go keyword.function.go",
"source.go keyword.import.go",
"source.go keyword.interface.go",
"source.go keyword.map.go",
"source.go keyword.package.go",
"source.go keyword.struct.go",
"source.go keyword.type.go",
"source.go keyword.var.go",
"source.js constant.other.object.key.js string.unquoted.label.js",
"storage.modifier",
"storage.type.property.js",
"storage.type.property.ts",
"storage.type.property.tsx",
"storage.type",
"storage",
"tag.decorator.js entity.name.tag.js",
"tag.decorator.js",
"text.html.basic entity.other.attribute-name.html",
"text.html.basic entity.other.attribute-name",
"variable.language",
"variable.other.object.property"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.unicodeHighlight.invisibleCharacters": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"files.exclude": {
"**/.cache": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true
},
"git.confirmSync": false,
"gitlens.menus": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.fontSize": 14,
"typescript.updateImportsOnFileMove.enabled": "always",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"window.zoomLevel": 1,
"workbench.colorTheme": "Shades of Purple",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "welcomePage",
"workbench.statusBar.visible": false
}