updated vscode settings

This commit is contained in:
Djeeberjr 2022-09-09 00:00:05 +02:00
parent 1f556c6d24
commit bac7ded52a

View File

@ -7,7 +7,6 @@
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"vsicons.dontShowNewVersionMessage": true,
"workbench.colorTheme": "Visual Studio 2019 Dark",
"terminal.integrated.cursorStyle": "line",
"explorer.confirmDelete": false,
"C_Cpp.intelliSenseEngine": "Tag Parser",
@ -23,15 +22,31 @@
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"workbench.editorAssociations": [
{
"viewType": "hexEditor.hexedit",
"filenamePattern": "*.hex"
},
{
"viewType": "hexEditor.hexedit",
"filenamePattern": "*.bin"
"workbench.editorAssociations": {
"*.hex": "hexEditor.hexedit",
"*.bin": "hexEditor.hexedit"
},
"go.toolsManagement.autoUpdate": true,
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced"
},
"[dockercompose]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
],
"go.toolsManagement.autoUpdate": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"svelte.enable-ts-plugin": true,
"workbench.startupEditor": "none",
"terminal.integrated.showExitAlert": false,
"terminal.integrated.enableShellIntegration": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.inlineSuggest.enabled": true
}