chore(vscode): update configs as usual

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>
This commit is contained in:
Andrei Jiroh Halili 2024-08-15 15:09:05 +08:00
parent d7a95fa880
commit 513b0a37ec
No known key found for this signature in database
GPG key ID: 67BFC91B3DA12BE8
5 changed files with 26 additions and 4 deletions

File diff suppressed because one or more lines are too long

View file

@ -21,7 +21,14 @@
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode"
}, },
"editor.tokenColorCustomizations": { "editor.tokenColorCustomizations": {
"textMateRules": [] "textMateRules": [
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
}
]
}, },
"workbench.colorTheme": "GitHub Dark Colorblind (Beta)", "workbench.colorTheme": "GitHub Dark Colorblind (Beta)",
"workbench.productIconTheme": "material-product-icons", "workbench.productIconTheme": "material-product-icons",
@ -38,5 +45,5 @@
}, },
"sqltools.useNodeRuntime": true, "sqltools.useNodeRuntime": true,
"sqltools.connections": [], "sqltools.connections": [],
"arcade-vsc.notifications.startReminder": false "arcade-vsc.notifications.startReminder": true,
} }

View file

@ -23,6 +23,7 @@
"window.customTitleBarVisibility": "auto", "window.customTitleBarVisibility": "auto",
"window.confirmBeforeClose": "never", "window.confirmBeforeClose": "never",
"window.titleBarStyle": "custom", "window.titleBarStyle": "custom",
"window.menuBarVisibility": "visible",
"gpgIndicator.enablePassphraseCache": true, "gpgIndicator.enablePassphraseCache": true,
"cSpell.userWords": [ "cSpell.userWords": [
"Infinix", "Infinix",
@ -65,4 +66,13 @@
"url": "https://youtrack.recaptime.dev/issue/META-<num>" "url": "https://youtrack.recaptime.dev/issue/META-<num>"
} }
], ],
"settingsSync.ignoredSettings": [
"caddyfile.executable"
],
"redhat.telemetry.enabled": true,
"window.autoDetectColorScheme": true,
"workbench.preferredDarkColorTheme": "GitHub Dark Colorblind (Beta)",
"workbench.preferredHighContrastColorTheme": "GitHub Dark High Contrast",
"workbench.preferredHighContrastLightColorTheme": "GitHub Light High Contrast",
"workbench.preferredLightColorTheme": "GitHub Light Colorblind (Beta)"
} }

Binary file not shown.

View file

@ -39,5 +39,10 @@
"**/node_modules/*/**": true, "**/node_modules/*/**": true,
"**/.cache/**": true "**/.cache/**": true
}, },
"dotenv.enableAutocloaking": false "dotenv.enableAutocloaking": false,
"search.exclude": {
"**/.cache": true
},
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true
} }