workstation/roles/home-gui/files/vscode-settings.json

75 lines
2.4 KiB
JSON
Raw Normal View History

2023-05-16 09:08:48 +00:00
{
2023-06-05 07:46:23 +00:00
"csharp.suppressBuildAssetsNotification": true,
2023-05-16 20:12:33 +00:00
"debug.console.historySuggestions": false,
2023-06-09 08:19:53 +00:00
"dotnetAcquisitionExtension.enableTelemetry": false,
"editor.fontFamily": "'Noto Sans Mono', 'Cascadia Code', Consolas, 'Courier New', monospace",
2023-05-16 09:08:48 +00:00
"editor.fontSize": 12,
2023-06-05 14:03:03 +00:00
"editor.renderWhitespace": "all",
2023-06-12 09:53:31 +00:00
"editor.wordWrap": "on",
"editorconfig.generateAuto": false,
2023-06-09 08:19:53 +00:00
"extensions.ignoreRecommendations": true,
2023-05-16 20:00:36 +00:00
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
2023-05-16 13:59:31 +00:00
"json.schemaDownload.enable": false,
2023-06-09 08:19:53 +00:00
"markdown.preferredMdPathExtensionStyle": "includeExtension",
2023-05-16 13:59:31 +00:00
"npm.fetchOnlinePackageInfo": false,
2023-06-05 09:06:39 +00:00
"powershell.codeFormatting.openBraceOnSameLine": false,
2023-05-16 20:12:33 +00:00
"search.quickOpen.includeHistory": false,
2023-05-16 09:08:48 +00:00
"security.workspace.trust.emptyWindow": false,
"security.workspace.trust.untrustedFiles": "newWindow",
2023-05-16 20:12:33 +00:00
"task.quickOpen.history": 0,
2023-05-16 09:08:48 +00:00
"telemetry.telemetryLevel": "off",
2023-05-16 13:59:31 +00:00
"terminal.integrated.enablePersistentSessions": false,
2023-05-16 20:12:33 +00:00
"terminal.integrated.shellIntegration.history": 0,
2023-06-12 09:53:48 +00:00
"todo-tree.general.tags": [
2023-06-12 10:19:22 +00:00
"[!!!]",
"[!!]",
"[!]",
2023-06-12 09:53:48 +00:00
"TODO",
2023-06-12 10:23:03 +00:00
"WORK",
2023-06-12 09:53:48 +00:00
"WAIT",
2023-06-12 10:23:03 +00:00
"DONE"
2023-06-12 09:53:48 +00:00
],
"todo-tree.highlights.customHighlight": {
2023-06-12 10:19:22 +00:00
"[!!!]": {
"fontWeight": "bold",
"foreground": "#ffc000"
},
"[!!]": {
"fontWeight": "bold",
"foreground": "#ffc000"
},
"[!]": {
"fontWeight": "bold",
"foreground": "#ffc000"
},
2023-06-12 09:53:48 +00:00
"DONE": {
"foreground": "#c0c0c0"
},
"TODO": {
"fontWeight": "bold",
"foreground": "#ff0000"
},
"WAIT": {
"fontWeight": "bold",
"foreground": "#ff00ff"
},
"WORK": {
"fontWeight": "bold",
"foreground": "#00ff00"
}
},
2023-06-12 10:10:19 +00:00
"todo-tree.tree.groupedByTag": true,
2023-05-16 19:54:55 +00:00
"update.mode": "manual",
"update.showReleaseNotes": false,
2023-05-16 09:08:48 +00:00
"window.restoreWindows": "none",
"workbench.colorTheme": "Default Light Modern",
2023-05-16 20:12:33 +00:00
"workbench.editor.historyBasedLanguageDetection": false,
2023-05-16 09:08:48 +00:00
"workbench.editor.untitled.hint": "hidden",
2023-05-16 13:59:31 +00:00
"workbench.enableExperiments": false,
2023-05-16 09:08:48 +00:00
"workbench.localHistory.enabled": false,
2023-05-16 20:12:33 +00:00
"workbench.localHistory.maxFileEntries": 0,
2023-05-16 13:59:31 +00:00
"workbench.settings.enableNaturalLanguageSearch": false,
2023-05-16 09:08:48 +00:00
"workbench.startupEditor": "none"
2023-05-16 13:59:31 +00:00
}