-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
197 lines (182 loc) · 6.97 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
// Core Editor Settings
"editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.lineHeight": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Editor Display
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "none",
"editor.smoothScrolling": true,
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": false,
"editor.guides.indentation": false,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.minimap.renderCharacters": false,
// Editor Behavior
"editor.linkedEditing": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.autoClosingDelete": "always",
"editor.autoClosingOvertype": "always",
"editor.dragAndDrop": false,
"editor.dropIntoEditor.enabled": false,
"editor.emptySelectionClipboard": false,
"editor.find.addExtraSpaceOnTop": false,
"editor.codeLens": false,
"editor.colorDecorators": false,
"editor.copyWithSyntaxHighlighting": false,
"editor.accessibilityPageSize": 1,
"editor.accessibilitySupport": "off",
// Suggestions and Intellisense
"editor.quickSuggestions": { "strings": "on" },
"editor.quickSuggestionsDelay": 0,
"editor.snippetSuggestions": "none",
"editor.suggest.showWords": false,
"editor.suggest.showSnippets": false,
"editor.snippets.codeActions.enabled": false,
"editor.inlayHints.padding": true,
"editor.hover.delay": 500,
"editor.rename.enablePreview": false,
"editor.screenReaderAnnounceInlineSuggestion": false,
"editor.showFoldingControls": "always",
"editor.unfoldOnClickAfterEndOfLine": true,
// Navigation
"editor.gotoLocation.alternativeImplementationCommand": "editor.action.goToReferences",
"editor.gotoLocation.alternativeReferenceCommand": "editor.action.goToReferences",
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
// Workbench and UI
"workbench.colorTheme": "Visual Studio Light",
"workbench.preferredDarkColorTheme": "Default Dark Modern",
"workbench.preferredLightColorTheme": "Visual Studio Light",
"workbench.fontAliasing": "antialiased",
"workbench.editor.enablePreview": false,
"workbench.tree.renderIndentGuides": "none",
"workbench.list.smoothScrolling": true,
"workbench.view.alwaysShowHeaderActions": true,
"window.autoDetectColorScheme": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.associations": {
".php_cs": "php",
".php_cs.dist": "php",
"*.css": "tailwindcss",
"*.js": "javascript",
"*.php": "php"
},
// Language Specific
"[blade]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[javascriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[json]": { "editor.defaultFormatter": "vscode.json-language-features" },
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[tailwindcss]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
// Language Preferences
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
// Terminal
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 2,
// Breadcrumbs
"breadcrumbs.icons": false,
"breadcrumbs.showArrays": false,
"breadcrumbs.showBooleans": false,
"breadcrumbs.showClasses": false,
"breadcrumbs.showConstants": false,
"breadcrumbs.showConstructors": false,
"breadcrumbs.showEnumMembers": false,
"breadcrumbs.showEnums": false,
"breadcrumbs.showEvents": false,
"breadcrumbs.showFields": false,
"breadcrumbs.showFiles": false,
"breadcrumbs.showFunctions": false,
"breadcrumbs.showInterfaces": false,
"breadcrumbs.showKeys": false,
"breadcrumbs.showMethods": false,
"breadcrumbs.showModules": false,
"breadcrumbs.showNamespaces": false,
"breadcrumbs.showNull": false,
"breadcrumbs.showNumbers": false,
"breadcrumbs.showObjects": false,
"breadcrumbs.showOperators": false,
"breadcrumbs.showPackages": false,
"breadcrumbs.showProperties": false,
"breadcrumbs.showStrings": false,
"breadcrumbs.showStructs": false,
"breadcrumbs.showTypeParameters": false,
"breadcrumbs.showVariables": false,
"breadcrumbs.symbolPath": "off",
// Emmet
"emmet.includeLanguages": {
"blade": "html",
"javascript": "html",
"react": "html",
"vue": "html",
"vue-html": "html"
},
"emmet.showAbbreviationSuggestions": false,
// PHP Intelephense
"intelephense.completion.maxItems": 5,
"intelephense.completion.suggestObjectOperatorStaticMethods": false,
"intelephense.completion.triggerParameterHints": false,
"intelephense.diagnostics.undefinedMethods": false,
"intelephense.environment.documentRoot": "public/index.php",
"intelephense.format.enable": false,
"intelephense.telemetry.enabled": false,
"intelephense.diagnostics.run": "onSave",
// Search
"search.exclude": {
"**/_ide_helper.php": true,
"**/bower_components": true,
"**/composer.lock": true,
"**/dist": true,
"**/node_modules": true,
"**/package-lock.json": true,
"**/public/{[^i],?[^n]}*": true,
"**/vendor/{[^l],?[^ai]}*": true,
".phpunit.result.cache": true,
"storage": true,
"storage/framework/views": true,
"**/cdk.out": true,
"**/_ide_helper_models.php": true,
"**/.phpstorm.meta.php": true,
"**/.idea": true
},
"search.useIgnoreFiles": false,
// Explorer
"explorer.confirmDelete": false,
"explorer.sortOrder": "type",
// Diff Editor
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
// Miscellaneous
"security.workspace.trust.startupPrompt": "never",
"tailwindCSS.colorDecorators": false,
"ipynb.pasteImagesAsAttachments.enabled": false,
"cursor.general.gitGraphIndexing": "enabled",
"cursor.cmdk.useThemedDiffBackground": true,
"cursor.diffs.useCharacterLevelDiffs": true,
"cursor.terminal.usePreviewBox": true,
"cursor.composer.collapsePaneInputBoxPills": true,
"cursor.composer.renderPillsInsteadOfBlocks": true,
"Laravel.translation.diagnostics": false,
"gitlens.launchpad.indicator.enabled": false
}