feat: init custom code-server read-only image

This commit is contained in:
2026-01-08 14:52:58 +08:00
commit c092eff2c8
5 changed files with 128 additions and 0 deletions

34
settings.json Normal file
View File

@@ -0,0 +1,34 @@
{
/* ------ 1. ------ */
"editor.mouseWheelZoom": true,
/* ------ 2. UI ------ */
// 隐藏侧边栏的“扩展”视图 (软隐藏)
// 虽然用户能通过菜单打开,但打开了也装不了东西(因为我们锁了权限)
"workbench.view.extensions.visible": false,
"workbench.view.debug.visible": false,
// 隐藏状态栏
"workbench.statusBar.visible": false,
// 顶部菜单紧凑
"window.menuBarVisibility": "compact",
// 隐藏小地图
"editor.minimap.enabled": false,
/* ------ 3. ------ */
// 禁止自动更新插件
"extensions.autoUpdate": false,
// 忽略推荐
"extensions.ignoreRecommendations": true,
/* ------ 4. ------ */
"terminal.integrated.visible": false,
"files.readonlyInclude": { "**": true },
"files.autoSave": "off",
/* ------ 5. ------ */
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme"
}