Files
code-viewer-docker/settings.json
2026-01-08 21:34:53 +08:00

39 lines
1.1 KiB
JSON

{
"locale": "zh-cn",
"workbench.startupEditor": "none",
"terminal.integrated.enabled": false,
/* ------ 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"
}