-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
111 lines (107 loc) · 3.33 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
// Editor settings
"editor.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontSize": 14,
"editor.minimap.enabled": true,
"editor.scrollbar.vertical": "auto",
"editor.scrollbar.horizontal": "auto",
"editor.scrollbar.verticalScrollbarSize": 12,
"editor.scrollbar.horizontalScrollbarSize": 12,
"editor.tabSize": 2,
"editor.linkedEditing": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.cursorBlinking": "smooth",
"editor.cursorStyle": "line",
"editor.cursorWidth": 1,
"editor.smoothScrolling": true,
"editor.lineNumbers": "on",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.sortImports": "explicit"
},
// File settings
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"files.associations": {
"*.css": "tailwindcss"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/.next": true,
"**/.husky": true,
"**/drizzle": true,
"**/dist": true,
"**/.todo.md": true,
"**/.vscode": true,
"**/.eslintrc.cjs": true,
"**/.editorconfig": true,
"**/.gitignore": true,
"**/.lintstagedrc.mjs": true,
"**/.markdownlint.json": true,
"**/.markdownlintignore": true,
"**/.prettierignore": true,
"**/bun.lockb": true,
"**/cspell.json": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/next-env.d.ts": true,
"**/postcss.config.cjs": true,
"**/prettier.config.js": true,
"**/README.md": true,
"**/next.config.js": true,
"**/tailwind.config.ts": true,
"**/drizzle.config.ts": true,
"**/migrate.ts": true,
"**/.env.example": true
},
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.closeOnFileDelete": true,
"window.title": "${activeEditorShort}${separator}${rootName}",
"extensions.ignoreRecommendations": true,
// Miscellaneous
"keyboard.dispatch": "keyCode",
"telemetry.telemetryLevel": "off",
"liveServer.settings.donotShowInfoMsg": true,
"git.openRepositoryInParentFolders": "never",
"explorer.confirmDelete": false,
"security.workspace.trust.untrustedFiles": "open",
"window.menuBarVisibility": "toggle",
"workbench.statusBar.visible": false,
// Performance related settings
"files.hotExit": "onExit",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"search.useGlobalIgnoreFiles": true,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
"update.mode": "none",
"editor.parameterHints.enabled": false,
"editor.hover.enabled": true,
"workbench.activityBar.location": "hidden",
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"workbench.colorTheme": "Solarized Osaka",
"workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark",
"editor.wordWrap": "on"
}