forked from CHEF-KOCH/VSCode-Settings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
227 lines (193 loc) · 5.95 KB
/
settings.json
File metadata and controls
227 lines (193 loc) · 5.95 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// Settings that overwrite default and user settings
//
// 05.08.2019 by CHEF-KOCH
// Version 1.3
//
{
// Disable Telemetry + Extension Telemetry
// or use: https://github.com/VSCodium/vscodium
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"extension-leaderboard.enableAppInsights": false,
// Fonts, MiniMap etc.
// https://github.com/tonsky/FiraCode
"editor.fontFamily": "Fira Code", //“editor.fontFamily”: “Consolas” or "editor.fontFamily": "Ubuntu Mono"
"editor.fontLigatures": true,
"editor.fontSize": 13,
//"editor.lineHeight": 23,
//"window.newWindowDimensions": "maximized",
//"window.openFoldersInNewWindow": "off",
//workbench.activityBar.visible": true,
//"window.restoreWindows": "none"
"font_face": "MS Gothic",
"editor.fontWeight": "500",
"editor.lineNumbers": "relative",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.multiCursorModifier": "alt",
// Editor Rulers
"editor.rulers": [
79, 99
],
// Font weights
//"editor.fontWeight": "300" // Light
//"editor.fontWeight": "400" // Regular
//"editor.fontWeight": "500" // Medium
//"editor.fontWeight": "600" // Bold
//"font_options":
"workbench.fontAliasing": "antialiased", //antialiased, default or none
//[
// "gray_antialias"
//],
// Disable welcome screen on first startup
"workbench.welcome.enabled": false,
// Disable auto save files
"files.autoSave": "off",
// Format on paste
"editor.formatOnPaste": true,
// Disable indentation guessing
"editor.detectIndentation": false,
// Default Tab size
"editor.tabSize": 4,
// Insert spaces when pressing Tab
"editor.insertSpaces": true,
// When enabled, will trim trailing whitespace when you save a file
"files.trimTrailingWhitespace": true,
// Emmet
"emmet.excludeLanguages": ["markdown", "typescriptreact"],
// Extensions to be installed by the Extension Manager
"extension-manager.extensions": [
"eg2.tslint", // TypeScript linter
"ms-vscode.cpptools", // Cpp tools
"msjsdiag.debugger-for-chrome", // Debugger for Chrome
"robertohuertasm.vscode-icons" // Cool icons for files
],
// Default end of line character
// Mac / Linus: \n
// Windows: \r\n
"files.eol": "auto",
// Glob patterns for excluding folders and files
"files.exclude": {
"**/*.build": true,
"**/*.git": true,
"**/*.err": true,
"**/*.rec": true,
"**/*.log": true,
"**/*.evt": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.ipynb_checkpoints": true,
"**/__pycache__": true,
"**/.hypothesis": true,
"**/.vscode": true,
"**/buildfre.*": true,
"**/buildchk.*": true,
"**/.DS_Store": true
},
// Glob patterns for excluding files and folders in searches
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
".build/**": true,
"out*/**": true,
"i18n/**": true,
"extensions/**/out/**": true,
"*.min.js": true
},
// Enable linter for TypeScript files
"tslint.enable": true,
"files.associations": {
"deque": "cpp",
"list": "cpp",
"vector": "cpp",
"xstring": "cpp"
},
// Show the status bar
"workbench.statusBar.visible": true,
// Disable status bar feedback indicator
"workbench.statusBar.feedback.visible": false,
// VS Code Icon theme
"workbench.iconTheme": "material-icon-theme",
// VS Code Color Theme
"workbench.colorTheme": "Dracula Soft",
// Global spell checker
"cSpell.language": "en",
// Disable breadcrumbs
"breadcrumbs.enabled": false,
// Render whitespace
"editor.renderWhitespace": "all",
// Ensure we use 100 % to avoid blurriness
"window.zoomLevel": 0,
// By default I prefer word wrap
"editor.wordWrap": "on",
// Default encoding for new files
"files.encoding": "utf8",
// By default we are going to guess new file encodings
"files.autoGuessEncoding": true,
// Indent <head> and <body> sections
"html.format.indentInnerHtml": true,
// Preserve new lines
"html.format.preserveNewLines": true,
// HTML formatter option (default)
"html.format.unformatted": "code",
// Default wrap line length
"html.format.wrapLineLength": 0,
// Github
"github.hosts": [
{
"host": "https://github.com",
"username": "oauth",
"token": "system"
}
],
// Language specific settings
"[python]": {
"editor.rulers": [
72,
79
},
"[css]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
},
"[html]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"[bat]": {
"files.encoding": "cp437",
"files.autoGuessEncoding": false,
"editor.fontFamily": "Consolas, 'Courier New', monospace"
},
"[markdown]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.encoding": "utf8"
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"[powershell]": {
"files.encoding": "windows1252"
},
"[reg]": {
"editor.tabSize": 2,
"files.encoding": "utf16le"
"editor.formatOnSave": true
},
// Extensions specific
//"docker.showExplorer": false,
"material-icon-theme.showUpdateMessage": false,
"extensions.showRecommendationsOnlyOnDemand": true,
"vim.mouseSelectionGoesIntoVisualMode": true,
"markdown-toc.depthFrom": 2,
"markdown-toc.depthTo": 3,
"markdown-toc.updateOnSave": true,
"markdownlint.config": {
// "MD001": false,
// "MD007": false,
},
}