-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
90 lines (73 loc) · 2.47 KB
/
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
{
// Disable welcome screen on startup
"workbench.welcome.enabled": false,
// Controls if the diff editor shows the diff side by side or inline
"diffEditor.renderSideBySide": false,
// Insert spaces when pressing Tab
"editor.insertSpaces": true,
// Minimap
"editor.minimap.enabled": true,
// A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events
"editor.mouseWheelScrollSensitivity": 5,
// Controls whether the editor should render whitespace characters
"editor.renderWhitespace": "all",
// 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
],
// When enabled, will trim trailing whitespace when you save a file
"files.trimTrailingWhitespace": true,
// Default end of line character
"files.eol": "\n",
// Glob patterns for excluding folders and files
"files.exclude": {
"**/*.build": true,
"**/*.git": true,
"**/*.err": true,
"**/*.rec": true,
"**/*.log": true,
"**/*.evt": 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"
},
"material-ui-snippets.showNotesOnStartup": false
}
<><><><><><><><><><><><><><><><><><><><>>
{
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "material-icon-theme",
"terminal.external.windowsExec": "",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.fontFamily": "'Cascadia Code'",
"editor.guides.bracketPairs": true,
"workbench.colorTheme": "NarutoDark",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"workbench.editor.enablePreview": false,
"files.autoSave": "afterDelay",
"workbench.startupEditor": "none"
}