|
| 1 | +{ |
| 2 | + "extensions": [ |
| 3 | + "/opt/cs50/extensions/cs50-0.0.1.vsix", |
| 4 | + "/opt/cs50/extensions/phpliteadmin-0.0.1.vsix", |
| 5 | + "/opt/cs50/extensions/workspace-layout-0.0.7.vsix", |
| 6 | + "cs50.ddb50", |
| 7 | + "cs50.extension-uninstaller", |
| 8 | + "ms-python.python", |
| 9 | + "ms-vscode.cpptools", |
| 10 | + "ms-vscode.hexeditor", |
| 11 | + "ms-vsliveshare.vsliveshare-pack", |
| 12 | + "tomoki1207.pdf", |
| 13 | + "vsls-contrib.gitdoc" |
| 14 | + ], |
| 15 | + "image": "ghcr.io/cs50/codespace", |
| 16 | + "postCreateCommand": "/opt/cs50/bin/postCreateCommand", |
| 17 | + "settings": { |
| 18 | + "breadcrumbs.enabled": false, |
| 19 | + "C_Cpp.autocomplete": "Disabled", |
| 20 | + "C_Cpp.codeFolding": "Disabled", |
| 21 | + "C_Cpp.dimInactiveRegions": false, |
| 22 | + "C_Cpp.enhancedColorization": "Enabled", |
| 23 | + "C_Cpp.errorSquiggles": "Disabled", |
| 24 | + "editor.autoClosingQuotes": "never", |
| 25 | + "editor.colorDecorators": false, |
| 26 | + "editor.emptySelectionClipboard": false, |
| 27 | + "editor.folding": false, |
| 28 | + "editor.foldingHighlight": false, |
| 29 | + "editor.hover.enabled": false, |
| 30 | + "editor.lightbulb.enabled": false, |
| 31 | + "editor.matchBrackets": "near", |
| 32 | + "editor.minimap.enabled": false, |
| 33 | + "editor.occurrencesHighlight": false, |
| 34 | + "editor.parameterHints.enabled": false, |
| 35 | + "editor.quickSuggestions": false, |
| 36 | + "editor.renderIndentGuides": false, |
| 37 | + "editor.renderWhitespace": "selection", |
| 38 | + "editor.selectionHighlight": false, |
| 39 | + "editor.semanticTokenColorCustomizations": { |
| 40 | + "[Default Dark+]": { |
| 41 | + "enabled": true, |
| 42 | + "rules": { |
| 43 | + "type": "#569CD6" |
| 44 | + } |
| 45 | + }, |
| 46 | + "[Default Light+]": { |
| 47 | + "enabled": true, |
| 48 | + "rules": { |
| 49 | + "type": "#0000FF" |
| 50 | + } |
| 51 | + } |
| 52 | + }, |
| 53 | + "editor.suggestOnTriggerCharacters": false, |
| 54 | + "extensions.ignoreRecommendations": true, |
| 55 | + "extension-uninstaller.uninstall": [ |
| 56 | + "github.copilot", |
| 57 | + "github.copilot-nightly", |
| 58 | + "tabnine.tabnine-vscode" |
| 59 | + ], |
| 60 | + "files.autoSave": "afterDelay", |
| 61 | + "files.exclude": { |
| 62 | + "**/.*": true |
| 63 | + }, |
| 64 | + "files.trimTrailingWhitespace": true, |
| 65 | + "files.watcherExclude": { |
| 66 | + "**/.git/objects/**": true, |
| 67 | + "**/.git/subtree-cache/**": true, |
| 68 | + "**/node_modules/*/**": true |
| 69 | + }, |
| 70 | + "git.autofetch": true, /* Disable "Would you like Code to periodically run 'git fetch'?" toast */ |
| 71 | + "git.decorations.enabled": false, |
| 72 | + "gitdoc.autoPull": "off", |
| 73 | + "gitdoc.enabled": true, |
| 74 | + "gitdoc.commitMessageFormat": "ddd, MMM D, YYYY, h:mm A Z", |
| 75 | + "gitdoc.commitValidationLevel": "none", |
| 76 | + "gitdoc.pullOnOpen": false, |
| 77 | + "html.suggest.html5": false, |
| 78 | + "javascript.suggest.enabled": false, |
| 79 | + "javascript.validate.enable": false, /* Disable red squiggles */ |
| 80 | + "problems.decorations.enabled": false, |
| 81 | + "remote.otherPortsAttributes": { |
| 82 | + "onAutoForward": "silent" |
| 83 | + }, |
| 84 | + "scm.countBadge": "off", |
| 85 | + "terminal.integrated.commandsToSkipShell": [ |
| 86 | + "workbench.action.toggleSidebarVisibility" |
| 87 | + ], |
| 88 | + "terminal.integrated.defaultProfile.linux": "bash", |
| 89 | + "terminal.integrated.profiles.linux": { |
| 90 | + "bash": { |
| 91 | + "args": [ |
| 92 | + "-l" |
| 93 | + ], |
| 94 | + "path": "bash" |
| 95 | + }, |
| 96 | + "JavaScript Debug Terminal": null |
| 97 | + }, |
| 98 | + "terminal.integrated.persistentSessionReviveProcess": "never", |
| 99 | + "terminal.integrated.sendKeybindingsToShell": true, |
| 100 | + "terminal.integrated.tabs.description": "${task}${separator}${local}", /* Remove cwdFolder from description */ |
| 101 | + "terminal.integrated.tabs.showActiveTerminal": "never", |
| 102 | + "window.autoDetectColorScheme": true, |
| 103 | + "workbench.colorCustomizations": { |
| 104 | + "editor.lineHighlightBorder": "#0000", /* Disable gray border-{bottom,top} on active line */ |
| 105 | + "editorError.foreground": "#0000", /* Disable red squiggles */ |
| 106 | + "editorWarning.foreground": "#0000", /* Disable yellow squiggles */ |
| 107 | + "editorGutter.addedBackground": "#0000", |
| 108 | + "editorGutter.deletedBackground": "#0000", |
| 109 | + "editorGutter.modifiedBackground": "#0000", /* Disable yellow bars to left of lines modified since last commit */ |
| 110 | + "[GitHub Light Default]": { |
| 111 | + "terminal.foreground": "#000000" /* Change terminal font color to #000 for GitHub Light Default theme */ |
| 112 | + } |
| 113 | + }, |
| 114 | + "workbench.editor.closeOnFileDelete": true, |
| 115 | + "workbench.editor.untitled.hint": "hidden", |
| 116 | + "workbench.enableExperiments": false, |
| 117 | + "workbench.iconTheme": "vs-minimal", /* Simplify icons */ |
| 118 | + "workbench.preferredDarkColorTheme": "Default Dark+", |
| 119 | + "workbench.preferredLightColorTheme": "Default Light+", |
| 120 | + "workbench.startupEditor": "none", |
| 121 | + "workbench.statusBar.visible": false, |
| 122 | + "workbench.tips.enabled": false, |
| 123 | + "workbench.welcomePage.walkthroughs.openOnInstall": false |
| 124 | + } |
| 125 | +} |
0 commit comments