-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
179 lines (179 loc) · 7.75 KB
/
settings.json
File metadata and controls
179 lines (179 loc) · 7.75 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"chat.agent.enabled": false,
"chat.disableAIFeatures": true,
"custom-ui-style.font.sansSerif": "'IBM Plex Mono', 'SF Mono', Menlo, Monaco, monospace",
"custom-ui-style.stylesheet": {
".basepanel .composite-bar-container .actions-container > .action-item": {
"& .active-item-indicator:before": {
"content": "none !important"
},
"&.checked": {
"background": "color-mix(in srgb, var(--vscode-foreground) 12%, transparent)"
},
"align-items": "center",
"border-radius": "4px",
"height": "24px",
"justify-content": "center",
"padding": "0 8px !important"
},
".monaco-breadcrumbs": {
"color": "var(--vscode-descriptionForeground) !important",
"font-size": "11px !important",
"font-weight": "400 !important",
"opacity": "0.8 !important"
},
".monaco-breadcrumbs .monaco-breadcrumb-item": {
"border-radius": "4px !important",
"color": "var(--vscode-descriptionForeground) !important",
"padding": "2px 6px !important",
"transition": "all 0.2s ease !important"
},
".monaco-breadcrumbs .monaco-breadcrumb-item:hover": {
"background": "color-mix(in srgb, var(--vscode-textLink-foreground) 10%, transparent) !important",
"color": "var(--vscode-textLink-foreground) !important"
},
".monaco-breadcrumbs .monaco-breadcrumb-item:last-child": {
"color": "var(--vscode-foreground) !important",
"font-weight": "500 !important"
},
".monaco-breadcrumbs .monaco-breadcrumb-separator": {
"color": "var(--vscode-textSeparator-foreground) !important",
"margin": "0 4px !important",
"opacity": "0.6 !important"
},
".monaco-scrollable-element > .scrollbar > .slider": {
"background": "color-mix(in srgb, var(--vscode-foreground) 20%, transparent) !important",
"border-radius": "6px !important"
},
".monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container>.tab.active": {
"--tab-border-bottom-color": "none !important",
"background": "linear-gradient(135deg, color-mix(in srgb, var(--vscode-textLink-foreground) 10%, transparent) 0%, color-mix(in srgb, var(--vscode-textLink-activeForeground) 10%, transparent) 100%) !important",
"border-image": "linear-gradient(90deg, var(--vscode-textLink-foreground) 0%, var(--vscode-textLink-activeForeground) 50%, var(--vscode-focusBorder) 100%) 1",
"border-left": "none !important",
"border-right": "none !important",
"border-top": "2px solid !important",
"color": "var(--vscode-tab-activeForeground) !important"
},
".quick-input-widget": {
"backdrop-filter": "blur(10px) !important",
"border-radius": "12px !important"
},
".quick-input-widget.show-file-icons > div.quick-input-header > div.quick-input-and-message > div.quick-input-filter > div.quick-input-box": {
"background": "var(--vscode-background) !important",
"border": "1px solid color-mix(in srgb, var(--vscode-foreground) 50%, transparent) !important",
"border-radius": "8px",
"box-shadow": "var(--vscode-foreground) 0 0 0 1px inset !important",
"padding": "4px"
},
".suggest-widget": {
"border": "1px solid color-mix(in srgb, var(--vscode-foreground) 15%, transparent) !important",
"border-radius": "8px !important"
},
".suggest-widget .monaco-list .monaco-list-row": {
"border-radius": "4px !important",
"margin": "1px 4px !important"
},
".suggest-widget .monaco-list .monaco-list-row.focused": {
"background": "color-mix(in srgb, var(--vscode-textLink-foreground) 12%, transparent) !important"
}
},
"debug.console.fontFamily": "'IBM Plex Mono', 'SF Mono', Menlo, Monaco, monospace",
"debug.onTaskErrors": "debugAnyway",
"editor.aiStats.enabled": false,
"editor.autoClosingBrackets": "always",
"editor.autoClosingComments": "always",
"editor.autoClosingQuotes": "always",
"editor.autoIndentOnPaste": true,
"editor.colorDecorators": false,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.experimental.asyncTokenization": false,
"editor.experimental.preferTreeSitter.typescript": false,
"editor.fontFamily": "'IBM Plex Mono', 'SF Mono', Menlo, Monaco, monospace",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.fontWeight": "normal",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.gotoLocation.alternativeDeclarationCommand": "editor.action.peekImplementation",
"editor.gotoLocation.alternativeDefinitionCommand": "editor.action.peekImplementation",
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"editor.inlayHints.fontFamily": "'IBM Plex Mono', 'SF Mono', Menlo, Monaco, monospace",
"editor.inlineSuggest.edits.showCollapsed": true,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.smoothScrolling": true,
"editor.tabSize": 2,
"eslint.format.enable": true,
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": true,
"files.trimTrailingWhitespace": true,
"javascript.format.semicolons": "remove",
"javascript.preferGoToSourceDefinition": true,
"notebook.formatOnCellExecution": true,
"notebook.formatOnSave.enabled": true,
"search.seedOnFocus": true,
"security.workspace.trust.untrustedFiles": "open",
"settingsSync.ignoredSettings": [],
"terminal.integrated.enableMultiLinePasteWarning": "never",
"terminal.integrated.fontFamily": "'IBM Plex Mono', 'SF Mono', Menlo, Monaco, monospace",
"terminal.integrated.smoothScrolling": true,
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.experimental.useTsgo": false,
"typescript.format.semicolons": "remove",
"typescript.implementationsCodeLens.enabled": false,
"typescript.implementationsCodeLens.showOnInterfaceMethods": true,
"typescript.preferences.includePackageJsonAutoImports": "auto",
"typescript.preferGoToSourceDefinition": true,
"typescript.suggest.autoImports": true,
"typescript.suggest.completeFunctionCalls": true,
"typescript.suggest.enabled": true,
"typescript.suggest.includeCompletionsForImportStatements": true,
"typescript.suggest.paths": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.confirmSaveUntitledWorkspace": false,
"workbench.activityBar.location": "top",
"workbench.colorTheme": "NeaDev: Tokyo Night",
"workbench.editor.editorActionsLocation": "titleBar",
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromCodeNavigation": true,
"workbench.editor.languageDetection": false,
"workbench.fontAliasing": "auto",
"workbench.iconTheme": "catppuccin-macchiato",
"workbench.list.smoothScrolling": true,
"workbench.navigationControl.enabled": false,
"workbench.productIconTheme": "el-vsc-v1-icons",
"workbench.remoteIndicator.showExtensionRecommendations": false,
"workbench.settings.applyToAllProfiles": [],
"workbench.settings.showAISearchToggle": false,
"workbench.startupEditor": "none",
"workbench.tree.indent": 11,
"workbench.tree.renderIndentGuides": "always",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"comment.block.documentation",
"comment.line.double-slash",
"comment.block",
"comment.line"
],
"settings": {
"fontStyle": ""
}
}
]
}
}