Spaces:
Sleeping
Sleeping
v2: config/code-server-settings.json
Browse files
config/code-server-settings.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"workbench.colorTheme": "Default Dark Modern",
|
| 3 |
+
"workbench.iconTheme": "material-icon-theme",
|
| 4 |
+
"workbench.startupEditor": "none",
|
| 5 |
+
"terminal.integrated.defaultProfile.linux": "bash",
|
| 6 |
+
"terminal.integrated.profiles.linux": {
|
| 7 |
+
"bash": {
|
| 8 |
+
"path": "/bin/bash",
|
| 9 |
+
"args": ["-l"],
|
| 10 |
+
"icon": "terminal-bash"
|
| 11 |
+
}
|
| 12 |
+
},
|
| 13 |
+
"terminal.integrated.fontSize": 14,
|
| 14 |
+
"terminal.integrated.fontFamily": "JetBrains Mono, Fira Code, monospace",
|
| 15 |
+
"terminal.integrated.cursorStyle": "line",
|
| 16 |
+
"terminal.integrated.scrollback": 10000,
|
| 17 |
+
"editor.fontSize": 14,
|
| 18 |
+
"editor.fontFamily": "JetBrains Mono, Fira Code, monospace",
|
| 19 |
+
"editor.tabSize": 2,
|
| 20 |
+
"editor.formatOnSave": true,
|
| 21 |
+
"editor.minimap.enabled": false,
|
| 22 |
+
"editor.bracketPairColorization.enabled": true,
|
| 23 |
+
"files.autoSave": "afterDelay",
|
| 24 |
+
"files.autoSaveDelay": 1000,
|
| 25 |
+
"telemetry.telemetryLevel": "off",
|
| 26 |
+
"extensions.autoUpdate": false,
|
| 27 |
+
"extensions.showRecommendationsOnlyOnDemand": true,
|
| 28 |
+
"workbench.tips.enabled": false,
|
| 29 |
+
"workbench.notifications.visibility": "error",
|
| 30 |
+
"update.mode": "none",
|
| 31 |
+
"git.autofetch": true,
|
| 32 |
+
"git.enableSmartCommit": true,
|
| 33 |
+
"terminal.integrated.env.linux": {
|
| 34 |
+
"PATH": "/opt/hermes/.venv/bin:${env:PATH}"
|
| 35 |
+
}
|
| 36 |
+
}
|