-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
103 lines (103 loc) · 3.79 KB
/
settings.json
File metadata and controls
103 lines (103 loc) · 3.79 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
{
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 14,
"editor.fontWeight": "460",
"editor.fontLigatures": false,
"editor.padding.top": 16,
"editor.letterSpacing": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.mouseWheelZoom": false,
"editor.renderLineHighlight": "none",
"editor.bracketPairColorization.enabled": true,
"editor.minimap.enabled": false,
"editor.cursorStyle": "underline-thin",
"editor.stickyScroll.enabled": false,
"editor.cursorBlinking": "phase",
"editor.lineNumbers": "on",
"git.decorations.enabled": false,
"scm.diffDecorations": "none",
"editor.semanticHighlighting.enabled": false,
"editor.cursorSmoothCaretAnimation": "off",
"editor.unicodeHighlight.nonBasicASCII": false,
"editor.parameterHints.enabled": true,
"breadcrumbs.enabled": false,
"terminal.integrated.fontFamily": "LucidaConsole Nerd Font Mono",
"terminal.integrated.fontSize": 16,
"terminal.integrated.lineHeight": 1.4,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.scrollback": 5000,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.fastScrollSensitivity": 3,
"terminal.integrated.scrollSensitivity": 1.2,
"workbench.iconTheme": "material-icon-theme-simon",
"workbench.productIconTheme": "material-product-icons",
"workbench.editor.labelFormat": "short",
"workbench.tree.renderIndentGuides": "none",
"workbench.tree.indent": 10,
"workbench.layoutControl.enabled": false,
"material-icon-theme-simon.folders.color": "#424243",
"window.zoomLevel": 2,
"window.commandCenter": false,
"window.titleBarStyle": "custom",
"window.restoreWindows": "all",
"window.restoreFullscreen": true,
"window.menuBarVisibility": "toggle",
"files.exclude": {
"**/.git": true,
"**/*.log": true,
"squarecloud.config": true
},
"files.autoSave": "afterDelay",
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.fileNesting.enabled": true,
"explorer.confirmPasteNative": false,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, README.md, request.http",
"*.sqlite": "${capture}.${extname}-*",
"*.db": "${capture}.${extname}-*",
"*.sqlite3": "${capture}.${extname}-*",
"*.db3": "${capture}.${extname}-*",
"*.sdb": "${capture}.${extname}-*",
"*.s3db": "${capture}.${extname}-*"
},
"search.searchViewMode": "list",
"search.exclude": {
"**/dist": true
},
"github.copilot.inlineSuggest.enable": true,
"github.copilot.inlineSuggest.showGhostText": true,
"github.copilot.inlineSuggest.autoTrigger": true,
"editor.suggest.showWords": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.guides.indentation": false,
"vsicons.presets.jsonOfficial": true,
"workbench.statusBar.visible": false,
"window.density.editorTabHeight": "compact",
"mdb.mcp.server": "prompt",
"editor.tabSize": 1,
"editor.detectIndentation": false,
"workbench.colorTheme": "Catppuccin Noir",
"chat.commandCenter.enabled": false,
"workbench.activityBar.location": "top",
"codeium.enableCodeLens": false,
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme-simon.hidesExplorerArrows": true,
"github.copilot.nextEditSuggestions.enabled": true
}