diff --git a/main.tf b/main.tf index 9038082..b2806b9 100644 --- a/main.tf +++ b/main.tf @@ -164,8 +164,26 @@ module "code-server" { # This ensures that the latest version of the module gets downloaded, you can also pin the module version to prevent breaking changes in production. version = ">= 1.0.0" - agent_id = coder_agent.main.id + extensions = [ + "redhat.vscode-yaml", + "MS-CEINTL.vscode-language-pack-zh-hans", + "mhutchie.git-graph" + ] + settings = { + "workbench.colorTheme": "Default Dark Modern", + "git.autofetch": true, + "workbench.startupEditor": "none", + "chat.commandCenter.enabled": false, + "editor.fontSize": 16, + "redhat.telemetry.enabled": true, + "editor.cursorStyle": "block", + "editor.cursorBlinking": "smooth", + "workbench.activityBar.location": "top", + "diffEditor.hideUnchangedRegions.enabled": true, + "diffEditor.experimental.showMoves": true, + "diffEditor.renderSideBySide": true + } order = 1 }