-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
194 lines (172 loc) · 5.55 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
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
{
// --- Editor ---
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.detectIndentation": false,
"editor.fontLigatures": true,
"editor.lineHeight": 0,
"editor.mouseWheelScrollSensitivity": 3,
"editor.mouseWheelZoom": true,
"editor.semanticHighlighting.enabled": true,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"files.encoding": "utf8bom",
"security.workspace.trust.untrustedFiles": "open",
"workbench.list.mouseWheelScrollSensitivity": 3.0,
"explorer.compactFolders": true,
// "window.titleBarStyle": "native",
"window.titleBarStyle": "native",
"editor.multiCursorModifier": "ctrlCmd",
// "window.titleBarStyle": "custom",
// --- Fontes ---
/*
"editor.fontFamily": "Anonymous Pro",
"editor.fontFamily": "B612 Mono",
"editor.fontFamily": "Bitstream Vera Sans Mono",
"editor.fontFamily": "Cascadia Code",
*/
/*
"editor.fontFamily": "Courier Prisme Code",
"editor.fontFamily": "Consolas",
"editor.fontFamily": "Cousine",
"editor.fontFamily": "DejaVu Sans Mono",
*/
/*
"editor.fontFamily": "Droid Sans Mono",
"editor.fontFamily": "Envy Code",
"editor.fontFamily": "Excalibur Monospace",
"editor.fontFamily": "Fira Code",
*/
/*
"editor.fontFamily": "Fira Code Light",
"editor.fontFamily": "Go Mono",
"editor.fontFamily": "Geist Mono",
"editor.fontFamily": "Hack",
*/
/*
"editor.fontFamily": "Iosevka",
"editor.fontFamily": "Hasklig",
"editor.fontFamily": "Inconsolata",
"editor.fontFamily": "Input Mono",
*/
"editor.fontFamily": "JetBrains Mono",
/*
"editor.fontFamily": "Letter Gothic Std",
"editor.fontFamily": "Liberation Mono",
"editor.fontFamily": "Lucida Console",
/*
"editor.fontFamily": "Menlo",
"editor.fontFamily": "Monaco",
"editor.fontFamily": "Monoid",
"editor.fontFamily": "MonospaceTypewriter",
*/
/*
"editor.fontFamily": "NK57 Monospace Cd Rg",
"editor.fontFamily": "Office Code Pro",
"editor.fontFamily": "Overpass Mono",
"editor.fontFamily": "Oxygen Mono",
*/
/*
"editor.fontFamily": "PragmataPro",
"editor.fontFamily": "ProFont",
"editor.fontFamily": "Roboto Mono",
"editor.fontFamily": "Source Code Pro",
"editor.fontFamily": "SF Mono",
*/
/*
"editor.fontFamily": "Space Mono",
"editor.fontFamily": "Sudo",
"editor.fontFamily": "Verily Serif Mono",
"editor.fontFamily": "Victor Mono",
*/
"terminal.integrated.fontFamily": "Iosevka",
// --- Syntax-based settings ---
"[ahk2]":
{
"editor.tabSize": 4,
"editor.fontFamily": "'JetBrains Mono', monospace"
},
"[json]":
{
"editor.tabSize": 2,
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Geist Mono', 'Cascadia Code', 'Aptos Mono', monospace"
},
"[jsonc]":
{
"editor.tabSize": 2,
"editor.fontFamily": "'JetBrains Mono','Roboto Mono', Consolas, 'Geist Mono', 'Cascadia Code', 'Aptos Mono', monospace"
},
"[markdown]": {
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.suggestOnTriggerCharacters": false,
},
"[python]":
{
"editor.tabSize": 4,
"editor.fontFamily": "'JetBrains Mono', Hack, monospace"
},
"workbench.colorTheme": "Ayu Mirage",
// --- Language settings ---
// --- AutoHotkey ---
"AHK++.v1.file":
{
"interpreterPath": "C:\\Users\\me\\AppData\\Local\\Programs\\AutoHotkey\\v2\\AutoHotkey64.exe"
},
"AHK++.v2.file":
{
"interpreterPath": "C:\\Users\\me\\AppData\\Local\\Programs\\AutoHotkey\\v2\\AutoHotkey64.exe",
"maxScanDepth": 2,
"helpPath": "C:\\Users\\me\\AppData\\Local\\Programs\\AutoHotkey\\v2\\AutoHotkey.chm"
},
// --- UI customization ---
"vscode_custom_css.imports": [
"file:///C:/Users/me/AppData/Roaming/Code/User/ui.css"
],
"workbench.activityBar.location": "top",
"workbench.editor.tabSizing": "fixed",
"workbench.colorCustomizations": {
// Git decoration color for modified files
"gitDecoration.modifiedResourceForeground": "#A0A0A0",
// Selection background (text currently selected)
"editor.selectionBackground": "#3399FF88", // A lighter, 50% transparent blue for selected text
// Find match background (active search result)
"editor.findMatchBackground": "#FFDD33AA", // A golden-yellow highlight, with 67% opacity for visibility
// Find match border (outline around the active search result)
"editor.findMatchBorder": "#ce800b", // Bright orange border to ensure clarity of the match
// Selection highlight background (highlight other instances of selected text)
"editor.selectionHighlightBackground": "#33CCFF55", // Light turquoise with 33% opacity to gently mark all similar occurrences
// Selection highlight border (optional, a clear border to differentiate the selected instance)
"editor.selectionHighlightBorder": "#00AACC" // Slightly darker turquoise for clear borders around selected matches
},
"workbench.editor.tabSizingFixedMaxWidth": 400,
"workbench.editor.tabSizingFixedMinWidth": 100,
"git.confirmSync": false,
"workbench.editor.editorActionsLocation": "titleBar",
"diffEditor.ignoreTrimWhitespace": false,
"window.customTitleBarVisibility": "never",
"javascript.suggest.enabled": false,
"typescript.suggest.enabled": false,
"markdown.extension.bold.indicator": "__",
"markdown.extension.list.indentationSize": -1, // No auto-indent for lists
"markdown.extension.list.toggleCheckbox": false, // Disable checkbox toggling
"markdown.extension.list.autoFormatting": false,
"markdownShortcuts.bold.marker": "__",
"markdownShortcuts.italics.marker": "*", // Disable auto-formatting lists
"search.exclude": {
"**/*.png": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.gif": true,
"**/*.bmp": true
},
"files.exclude": {
"**/*.png": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.gif": true,
"**/*.bmp": true
}
}