-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
142 lines (139 loc) · 5.03 KB
/
settings.json
File metadata and controls
142 lines (139 loc) · 5.03 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
{
// * Visuals
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "Jetbrains Mono",
"editor.guides.bracketPairs": "active",
"editor.lineNumbers": "relative",
"editor.renderWhitespace": "none",
"window.autoDetectColorScheme": true,
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.iconTheme": "catppuccin-mocha",
"workbench.preferredDarkColorTheme": "Catppuccin Mocha",
"workbench.editor.tabActionLocation": "left",
"workbench.fontAliasing": "antialiased",
"workbench.list.smoothScrolling": true,
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.expandMode": "singleClick",
"workbench.tree.indent": 10,
"workbench.editor.showTabs": "single",
"workbench.settings.editor": "ui",
"workbench.editor.wrapTabs": true,
// * Editor
"breadcrumbs.enabled": false,
"editor.accessibilitySupport": "off",
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.lineHeight": 32,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "normal",
"editor.cursorWidth": 5,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.smoothScrolling": true,
"editor.suggest.insertMode": "replace",
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
"editor.inlineSuggest.enabled": true,
"editor.tabSize": 4,
"editor.stickyScroll.enabled": true,
"editor.hover.sticky": true,
"editor.wordWrap": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"explorer.compactFolders": false,
"window.commandCenter": true,
"zenMode.hideLineNumbers": true,
"zenMode.showTabs": "single",
"zenMode.hideStatusBar": false,
"debug.onTaskErrors": "debugAnyway",
"diffEditor.ignoreTrimWhitespace": false,
"explorer.confirmDelete": true,
"explorer.confirmDragAndDrop": false,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.simpleDialog.enable": true,
"git.autofetch": true,
"git.enableSmartCommit": true,
"git.untrackedChanges": "separate",
"git.confirmSync": false,
"scm.diffDecorationsGutterWidth": 2,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontWeight": "300",
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.tabs.enabled": true,
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": true,
"workbench.editor.limit.value": 5,
"search.exclude": {
"**/*.snap": true,
"**/.git": true,
"**/.github": false,
"**/.nuxt": true,
"**/.output": true,
"**/.pnpm": true,
"**/.vscode": true,
"**/.yarn": true,
"**/node_modules": true,
"**/out/**": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/temp": true,
"**/yarn.lock": true,
"**/CHANGELOG*": true,
"**/LICENSE*": true
},
// * Global level config
"window.dialogStyle": "custom",
"window.nativeTabs": true, // this is great, macOS only
"window.title": "${rootName}", // this make tabs more readable
"window.titleBarStyle": "custom",
"extensions.autoUpdate": "onlyEnabledExtensions",
// * Extension configs
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"prettier.documentSelectors": ["**/*.astro"],
"settingsSync.ignoredExtensions": ["antfu.unocss"],
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.updateImportsOnFileMove.enabled": "always",
"[astro]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[go]": {
"editor.defaultFormatter": "golang.go"
},
"[postcss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.tabWidth": 4,
"[php]": {
"editor.defaultFormatter": "DEVSENSE.phptools-vscode"
},
"[blade]": {
"editor.defaultFormatter": "shufo.vscode-blade-formatter"
},
"bladeFormatter.format.noMultipleEmptyLines": true,
"bladeFormatter.format.sortHtmlAttributes": "idiomatic",
"bladeFormatter.format.sortTailwindcssClasses": true,
"bladeFormatter.format.wrapAttributes": "force-expand-multiline",
"terminal.integrated.defaultProfile.windows": "Git Bash"
}