-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
140 lines (140 loc) · 4.22 KB
/
config.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
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
{
"window.zoomLevel": -0.5,
"editor.fontSize": 14,
"editor.lineHeight": 1.5,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"extensions.ignoreRecommendations": false,
"typescript.tsserver.log": "off",
"workbench.tree.enableStickyScroll": false,
"files.associations": {
".env.*": "dotenv",
".prettierrc": "json",
"*.css": "css",
".dev.vars": "dotenv",
"*.vue": "vue"
},
"workbench.tree.indent": 7,
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"editor.parameterHints.enabled": true,
"editor.renderLineHighlight": "none",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"terminal.integrated.showExitAlert": false,
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
"typescript.preferences.preferTypeOnlyAutoImports": true,
"terminal.integrated.env.osx": {},
"workbench.editor.labelFormat": "short",
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"vue-html": "html"
},
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.compactFolders": false,
"git.enableSmartCommit": true,
"editor.accessibilitySupport": "off",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontFamily": "JetBrainsMono mono",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"graphql",
"json",
"jsonc",
"java"
],
"editor.semanticHighlighting.enabled": true,
"editor.fontFamily": "JetBrains Mono",
"gitlens.codeLens.authors.enabled": false,
"files.exclude": {
"**/CVS": true,
"**/.DS_Store": true,
"**/.hg": true,
"**/.svn": true,
"**/.git": true,
".vscode": true,
"node_modules": true
},
"update.mode": "default",
"terminal.integrated.gpuAcceleration": "on",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.commandCenter": false,
"typescript.suggest.autoImports": true,
"git.openRepositoryInParentFolders": "always",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editor.empty.hint": "hidden",
"update.showReleaseNotes": false,
"security.promptForLocalFileProtocolHandling": false,
"editor.scrollbar.vertical": "hidden",
"explorer.sortOrder": "foldersNestsFiles",
"explorer.fileNesting.patterns": {
"package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-*, bun.lockb, nest*, package-lock*",
"tailwind.config.*": "tailwind.config*, postcss.config*",
".env.local": ".env*",
".env": ".env*"
},
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorWidth": 2,
"explorer.fileNesting.enabled": true,
"workbench.layoutControl.enabled": false,
"files.autoSave": "afterDelay",
"codeium.enableConfig": {
"*": true,
"prisma": true
},
"workbench.sideBar.location": "left",
"workbench.settings.applyToAllProfiles": [
"terminal.integrated.defaultProfile.windows"
],
"settingsSync.ignoredSettings": [
"terminal.integrated.defaultProfile.windows"
],
"terminal.integrated.env.linux": {},
"remote.autoForwardPortsSource": "hybrid",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.autofetch": true,
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"editor.stickyScroll.enabled": false,
"codeium.enableCodeLens": false,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"workbench.iconTheme": "vscode-icons",
"editor.tabSize": 2,
"console-ninja.featureSet": "Community",
"editor.minimap.enabled": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.statusBar.visible": false,
"tabby.endpoint": "http://localhost:8080",
"workbench.colorTheme": "Vim Deep Dark"
}