-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.json
More file actions
149 lines (135 loc) · 4.31 KB
/
Copy pathsetting.json
File metadata and controls
149 lines (135 loc) · 4.31 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
{
// Enable running code in terminal
"code-runner.runInTerminal": true,
"code-runner.saveFileBeforeRun": true,
"explorer.confirmDelete": false,
"code-runner.clearPreviousOutput": true,
// Default formatters for various languages
"[html]": {
"editor.defaultFormatter": "SimonSiefke.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "SimonSiefke.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// Font and styling preferences
"editor.fontLigatures": true,
"editor.fontFamily": "'Sansita', 'monospace'",
"editor.fontWeight": "600",
"files.autoSave": "afterDelay",
"editor.mouseWheelZoom": true,
"editor.minimap.enabled": false,
"editor.rulers": [80, 120],
// Workbench UI settings
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Winter is Coming (Dark Blue - No Italics)",
// Sidebar settings
"workbench.sideBar.location": "right",
"explorer.confirmDragAndDrop": false,
"window.zoomLevel": -1,
// Custom typing sound (mechanical keyboard tones)
"code-talker.soundPack": "mechanical",
"code-talker.typingSpeed": "medium",
"code-talker.enable": true,
// Emoji insertion settings
"emojiPicker.trigger": ":",
"emojiPicker.showImages": true,
// Auto-close tags for various languages
"auto-close-tag.activationOnLanguage": [
"xml", "php", "blade", "ejs", "jinja",
"javascript", "javascriptreact", "typescript",
"typescriptreact", "plaintext", "markdown",
"vue", "liquid", "erb", "lang-cfml", "cfml",
"HTML (EEx)", "HTML (Eex)", "plist"
],
// Custom color customization
"editor.tokenColorCustomizations": {
"[*Light*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#000"
}
}
]
},
"[*Dark*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#fff"
}
}
]
},
"textMateRules": [
{
"scope": "keyword",
"settings": {
"foreground": "#2507ac"
}
},
{
"scope": "string",
"settings": {
"foreground": "#7105a3"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#1e1d22"
}
}
]
},
// GitLens settings
"gitlens.advanced.messages": {
"suppressGitDisabledWarning": true,
"suppressGitMissingWarning": true
},
// Improve terminal environment
"terminal.integrated.env.linux": {},
// Inlay hints for better readability
"editor.inlayHints.fontSize": 10,
// Customize window title for a professional look
"window.title": "${dirty}${activeEditorShort}${separator}${folderPath}${separator}${appName}",
"editor.accessibilitySupport": "on",
"files.associations": {
"*.ejs": "html",
".env*": "dotenv"
},
"tabnine.experimentalAutoImports": true,
"workbench.editorAssociations": {
"*.copilotmd": "vscode.markdown.preview.editor",
"{git,gitlens,git-graph}:/**/*.{md,csv,svg}": "default"
},
"terminal.integrated.fontSize": 14,
// Enable pinch-to-zoom
"window.autoDetectHighContrast": false,
"window.zoomLevel": 0,
"editor.multiCursorModifier": "ctrlCmd",
"editor.zoom": "pinch",
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"dotenv.enableAutocloaking": false,
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"json.schemas": [
]
}