-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
91 lines (82 loc) · 2.84 KB
/
settings.json
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
{
"breadcrumbs.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.fixAll.eslint": "always"
},
"editor.fontFamily": "Jetbrains Mono",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"editor.formatOnSave": false,
"editor.lineHeight": 1.7,
"editor.renderLineHighlight": "none",
"editor.semanticHighlighting.enabled": false,
"editor.stickyScroll.enabled": false,
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
"editor.tabSize": 2,
"editor.unicodeHighlight.nonBasicASCII": false,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmPasteNative": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.json": ".eslint*, prettier*, tsconfig*, vite*, yarn*, pnpm-lock*, bun.lockb*, nest*",
"tailwind.config.js": "tailwind.config*, postcss.config*",
".env.local": ".env*",
".env": ".env*"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open",
"symbols.hidesExplorerArrows": false,
"tailwindCSS.experimental.classRegex": [
[
"cva\\(([^)]*)\\)",
"[\"'`]([^\"'`]*).*?[\"'`]"
],
[
"cx\\(([^)]*)\\)",
"(?:'|\"|`)([^']*)(?:'|\"|`)"
]
],
"terminal.integrated.fontSize": 14,
"terminal.integrated.showExitAlert": false,
"terminal.integrated.tabs.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.titleBarStyle": "custom",
"window.zoomLevel": 0.25,
"workbench.colorTheme": "Min Dark",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#A6B6E5",
"editorIndentGuide.background1": "#1b1d2b",
"editorIndentGuide.activeBackground1": "#3d3f4daa"
},
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "symbols",
"workbench.productIconTheme": "fluent-icons",
"workbench.startupEditor": "none",
// Custom styles using Apc Customize UI++
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 11,
"y": 10
}
},
"apc.font.family": "inter",
"apc.header": {
"height": 36
},
"apc.stylesheet": {
".editor.actions": "display: none",
".monaco-list-row": "border-radius: 4px",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none",
".pane-body": "padding: 8px 0",
".pane-header": "padding: 0 8px",
".split-view-view:first-child .pane-header": "display: none !important",
".title-label > h2": "display: none",
".composite.title > .title-label": "display: none !important",
".inline-title-bar:not(.horizontal-activitybar) .monaco-workbench:not(.fullscreen) .activitybar:not(.right) .content": "height: inherit !important; transform: inherit !important"
}
}