-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.json5
More file actions
114 lines (113 loc) · 2.54 KB
/
theme.json5
File metadata and controls
114 lines (113 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Local workspace override for GitCodeViewer development
{
$schema: './schemas/workspace.schema.json',
workspace: {
id: 'local-mobile-review',
title: 'GitCodeViewer Workspace',
defaultTheme: 'jetbrains-dark',
accentPreset: 'teal-sand',
fontSize: 14,
lineWrap: false,
showLineNumbers: true,
showFolding: true,
},
languageAliases: {
ets: 'typescript',
mts: 'typescript',
cts: 'typescript',
json5: 'json',
jsonc: 'json',
jinja2: 'jinja',
},
repositories: [
{
id: 'reader-core',
name: 'code-reader',
path: 'D:/xdnote/code-reader',
branch: 'main',
provider: 'local',
language: 'typescript',
pinned: true,
},
{
id: 'fixture-set',
name: 'GitCodeViewer',
path: 'D:/xdnote/GitCodeViewer',
branch: 'samples',
provider: 'local',
language: 'mixed',
pinned: true,
},
{
id: 'viewer-web',
name: 'viewer-web',
path: 'apps/web',
branch: 'feat/workspace-title',
provider: 'github',
language: 'typescript',
pinned: false,
},
{
id: 'viewer-docs',
name: 'viewer-docs',
path: 'apps/docs',
branch: 'main',
provider: 'gitlab',
language: 'mdx',
pinned: false,
},
{
id: 'viewer-sync',
name: 'viewer-sync',
path: 'packages/sync-rs',
branch: 'main',
provider: 'github',
language: 'rust',
pinned: false,
},
{
id: 'ios-shell',
name: 'ios-shell',
path: 'apps/ios-shell',
branch: 'develop',
provider: 'github',
language: 'swift',
pinned: false,
},
],
quickOpen: [
'README.md',
'src/utils/string.ts',
'web/codemirror/core.ts',
'web/codemirror/dev.ts',
'docs/1.3.2.md',
],
preview: {
mobileWidth: 390,
tabletWidth: 820,
showDeviceFrame: false,
syncThemeFromHost: true,
},
review: {
preferredDiff: 'side-by-side',
highlightTrailingWhitespace: true,
collapseUnsupportedFolding: true,
sampleDirectory: 'D:/xdnote/GitCodeViewer',
},
experiments: {
workspaceTitleAccent: true,
workspaceTitleUnderline: true,
autoGenerateMissingSamples: false,
retainLegacyModesWithoutFolding: true,
},
pinnedCommands: [
'pnpm --dir web exec tsc --noEmit',
'pnpm -s web:build',
'rg --files src web docs',
],
reviewers: [
{ name: 'Ada', focus: ['syntax', 'fixtures'] },
{ name: 'Lin', focus: ['mobile', 'layout'] },
{ name: 'Tao', focus: ['build', 'release'] },
],
}