diff --git a/.config/Code - OSS/User/settings.json b/.config/Code - OSS/User/settings.json index d75a918..271da4b 100644 --- a/.config/Code - OSS/User/settings.json +++ b/.config/Code - OSS/User/settings.json @@ -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 -} \ No newline at end of file + }, + "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 +}