This commit is contained in:
2026-01-01 00:13:50 +08:00
parent 179f1e1f31
commit 87c2d29079
8 changed files with 453 additions and 19 deletions

17
app/app.config.ts Normal file
View File

@@ -0,0 +1,17 @@
// @keep-sorted
export default defineAppConfig({
component: {
codeblock: {
/** 代码块触发折叠的行数 */
triggerRows: 32,
/** 代码块折叠后的行数 */
collapsedRows: 16,
/** 启用代码块缩进导航会关闭空格渲染 */
enableIndentGuide: true,
/** 代码块缩进导航(Indent Guige)竖线匹配空格数 */
indent: 4,
/** tab渲染宽度 */
tabSize: 3,
},
},
});