-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
93 lines (81 loc) · 2.82 KB
/
settings.json
File metadata and controls
93 lines (81 loc) · 2.82 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
{
"telemetry.telemetryLevel": "off",
"gitlens.telemetry.enabled": false,
"window.menuBarVisibility": "toggle",
"security.workspace.trust.untrustedFiles": "open",
"explorer.compactFolders": false,
"explorer.enableDragAndDrop": false,
"extensions.ignoreRecommendations": true,
"breadcrumbs.icons": false,
"breadcrumbs.showKeys": false,
"breadcrumbs.showFiles": false,
"breadcrumbs.symbolPath": "off",
"breadcrumbs.showArrays": false,
"breadcrumbs.showEvents": false,
"breadcrumbs.showFields": false,
"breadcrumbs.showClasses": false,
"breadcrumbs.showMethods": false,
"breadcrumbs.showBooleans": false,
"breadcrumbs.showFunctions": false,
"breadcrumbs.showConstants": false,
"breadcrumbs.showEnumMembers": false,
"breadcrumbs.showConstructors": false,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.fontFamily": "'JetBrains Mono'",
"editor.fontWeight": "400",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.unicodeHighlight.nonBasicASCII": false,
"editor.wordWrap": "bounded",
"editor.wrappingIndent": "same",
"editor.wordWrapColumn": 100,
"editor.rulers": [100],
"editor.dragAndDrop": false,
"editor.formatOnSave": true,
"editor.scrollBeyondLastLine": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.inlineSuggest.enabled": true,
"editor.glyphMargin": false,
"editor.scrollbar.verticalScrollbarSize": 5,
"scm.diffDecorationsGutterAction": "none",
"scm.diffDecorations": "none",
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"prettier.semi": false,
"prettier.trailingComma": "none",
"prettier.singleQuote": true,
"workbench.activityBar.location": "top",
"workbench.editor.showTabs": "none",
"workbench.editor.enablePreview": false,
"workbench.tree.indent": 20,
"workbench.startupEditor": "none",
"workbench.tree.renderIndentGuides": "always",
"workbench.iconTheme": "catppuccin-perfect-sequoia",
"workbench.colorTheme": "Adonis+ Mirage",
"debug.toolBarLocation": "hidden",
"debug.focusEditorOnBreak": false,
"debug.focusWindowOnBreak": false,
"debug.showBreakpointsInOverviewRuler": false,
"debug.showInlineBreakpointCandidates": false,
"terminal.external.linuxExec": "",
"terminal.explorerKind": "external",
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.stickyScroll.enabled": false,
"terminal.integrated.minimumContrastRatio": 5,
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.defaultProfile.linux": "bash",
"files.eol": "\n",
"files.associations": {
"*.css": "tailwindcss"
},
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
}
}