-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVSCode_Parameters.json
174 lines (146 loc) · 6.38 KB
/
VSCode_Parameters.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
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
/* ******************************************************************************* */
/* */
/* Vim VSCode Parameters.json */
/* */
/* By: YohanGH <[Your Email]> __...--~~~~~-._ _.-~~~~~--...__ */
/* // `V' \\ */
/* // | \\ */
/* Created: 2023-11-29 By: YohanGH //__...--~~~~~~-._ | _.-~~~~~~--...__\\ */
/* Updated: 2023-11-29 By: YohanGH //__.....----~~~~._\ | /_.~~~~----.....__\\ */
/* ====================\\|//==================== */
/* `---` */
/* ******************************************************************************* */
{
/* ---------------------------------------------------------------- */
// --- Editor
/* ---------------------------------------------------------------- */
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.occurrencesHighlight": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.linkedEditing": true,
"editor.renderWhitespace": "trailing",
"editor.suggest.insertMode": "replace",
/* ---------------------------------------------------------------- */
// --- Explorer
/* ---------------------------------------------------------------- */
"explorer.autoReveal": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
//* ---------------------------------------------------------------- *
// --- Cmake
/* ---------------------------------------------------------------- */
"cmake.configureOnOpen": true,
/* ---------------------------------------------------------------- */
// --- debug
/* ---------------------------------------------------------------- */
"debug.onTaskErrors": "showErrors",
// --- git
"git.openRepositoryInParentFolders": "never",
"git.confirmSync": false,
"git.enableSmartCommit": true,
/* ---------------------------------------------------------------- */
// --- gitlens
/* ---------------------------------------------------------------- */
"gitlens.currentLine.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.hovers.currentLine.over": "line",
/* ---------------------------------------------------------------- */
// --- files
/* ---------------------------------------------------------------- */
"files.autoSave": "onFocusChange",
"files.defaultLanguage": "markdown",
/* ---------------------------------------------------------------- */
// --- Emmet
/* ---------------------------------------------------------------- */
"emmet.triggerExpansionOnTab": true,
/* ---------------------------------------------------------------- */
// --- Workbench
/* ---------------------------------------------------------------- */
"workbench.tree.indent": 15
"workbench.tree.renderIndentGuides": "always",
"workbench.editor.enablePreview": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Tokyo Hack",
"workbench.colorCustomizations": {
"[Tokyo Hack]": {
"editor.selectionHighlightBackground": "#663399"
"editor.selectionBackground": "#663399"
}
},
//"workbench.colorTheme": "tokyo"
//"workbench.colorTheme":
//"workbench.colorTheme":
/* ---------------------------------------------------------------- */
// --- Editor
/* ---------------------------------------------------------------- */
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.lineHeight": 28,
"editor.fontSize": 16,
/* ---------------------------------------------------------------- */
// --- Javascript
/* ---------------------------------------------------------------- */
"javascript.updateImportsOnFileMove.enabled": "always",
/* ---------------------------------------------------------------- */
// --- Multi Command
/* ---------------------------------------------------------------- */
"multiCommand.commands": [
{
"command": "multiCommand.makeRoom",
"sequence": [
"workbench.action.toggleSidebarVisibility",
"Workbench.action.togglesActivityBarVisibility",
]
}
]
/* ---------------------------------------------------------------- */
// --- Prettier And Language
/* ---------------------------------------------------------------- */
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggest.insertMode": "replace",
"editor.formatOnType": true
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggest.insertMode": "replace",
"cSpell.fixSpellingWithRenameProvider": false
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.maxTokenizationLineLength": 2500
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[c]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordBasedSuggestions": false,
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true
},
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.codeLens.symbolScopes": [
"!Module"
],
"editor.formatOnType": true,
"editor.wordBasedSuggestions": false
},
"[markdown]": {
"editor.defaultFormatter": "vscode.markdown-language-features",
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"cSpell.fixSpellingWithRenameProvider": true,
"cSpell.advanced.feature.useReferenceProviderWithRename": true,
"cSpell.advanced.feature.useReferenceProviderRemove": "/^#+\\s/"
},
}