diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index f5a6613..ad5a6d4 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json @@ -201,5 +201,30 @@ "chat.disableAIFeatures": true, "workbench.preferredDarkColorTheme": "Visual Studio Dark", "workbench.preferredLightColorTheme": "Visual Studio Light", - "workbench.colorTheme": "Visual Studio Light", -} \ No newline at end of file + "workbench.colorTheme": "Visual Studio Dark", + "workbench.colorCustomizations": { + "[Visual Studio Dark]": { + "editor.background": "#000000", + "terminal.background": "#1E1E1E", + "panel.background": "#1E1E1E" + } + }, + "editor.tokenColorCustomizations": { + "[Visual Studio Dark]": { + "textMateRules": [ + { + "scope": [ + "comment", + "comment.block", + "comment.block.documentation", + "comment.line" + ], + "settings": { + "foreground": "#FFFF00" + } + } + ] + } + }, + "claudeCode.useCtrlEnterToSend": true +}