Last active
January 21, 2025 18:29
-
-
Save ahinkle/d99742b14dab934300e7120887420bbd to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "MonoLisa, Fira Code, Menlo, Monaco, 'Courier New', monospace", // Dark Theme | |
// "editor.fontFamily": "ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace", // Light Theme | |
"editor.minimap.autohide": true, | |
"editor.minimap.enabled": false, | |
"editor.lineHeight": 48, | |
"workbench.editor.showTabs": "none", | |
"files.trimTrailingWhitespace": false, | |
"files.trimFinalNewlines": true, | |
"files.insertFinalNewline": true, | |
"extensions.ignoreRecommendations": true, | |
"workbench.tips.enabled": false, | |
"editor.letterSpacing": 0.5, | |
"editor.cursorBlinking": "phase", | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"editor.guides.indentation": false, | |
"terminal.integrated.fontSize": 13, | |
"terminal.integrated.lineHeight": 2.0, | |
"terminal.integrated.cursorBlinking": false, | |
"terminal.integrated.cursorStyle": "line", | |
"editor.inlineSuggest.enabled": true, | |
"git.decorations.enabled": false, | |
"scm.diffDecorations": "none", | |
"php.validate.executablePath": "", | |
"php.validate.enable": true, | |
"editor.matchBrackets": "never", | |
"workbench.iconTheme": "material-icon-theme", | |
"discord.largeImageIdling": "Main Menu", | |
"discord.lowerDetailsEditing": "Private Workspace", | |
"discord.detailsEditing": "Writing some {lang}..", | |
"discord.removeRemoteRepository": true, | |
"namespaceResolver.showMessageOnStatusBar": true, | |
"html.autoClosingTags": false, | |
"javascript.autoClosingTags": false, | |
"typescript.autoClosingTags": false, | |
"githubPullRequests.pushBranch": "always", | |
"githubIssues.issueBranchTitle": "${issueNumber}/${sanitizedIssueTitle}", | |
"githubPullRequests.createOnPublishBranch": "never", | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false | |
}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"git.confirmSync": false, | |
"githubPullRequests.pullBranch": "never", | |
"php.codeLens.enabled": false, | |
"editor.lightbulb.enabled": "off", | |
"editor.glyphMargin": false, | |
"editor.lineNumbers": "off", | |
"zenMode.hideLineNumbers": false, | |
"git.confirmEmptyCommits": false, | |
"git.suggestSmartCommit": false, | |
"githubIssues.workingIssueFormatScm": "", | |
"terminal.integrated.gpuAcceleration": "off", | |
"editor.accessibilitySupport": "off", | |
"terminal.integrated.fontFamily": "monospace", | |
"window.restoreWindows": "none", | |
"workbench.activityBar.location": "top", | |
"security.workspace.trust.untrustedFiles": "open", | |
"git.autofetch": true, | |
"breadcrumbs.filePath": "off", | |
"conventionalCommits.promptScopes": false, | |
"conventionalCommits.promptFooter": false, | |
"conventionalCommits.promptBody": false, | |
"conventionalCommits.showNewVersionNotes": false, | |
"conventionalCommits.gitmoji": false, | |
"conventionalCommits.silentAutoCommit": true, | |
"git.enableSmartCommit": true, | |
"discord.suppressNotifications": true, | |
"window.commandCenter": false, | |
"workbench.editor.editorActionsLocation": "hidden", | |
"workbench.layoutControl.enabled": false, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.fontLigatures": true, | |
"cSpell.userWords": [ | |
"Assertable", | |
"autoload", | |
"BIGCOMMERCE", | |
"clsx", | |
"Commmerce", | |
"endforeach", | |
"firstline", | |
"geolocate", | |
"heroicon", | |
"HUBSPOT", | |
"laravel", | |
"livewire", | |
"mapkit", | |
"msrp", | |
"multipolygon", | |
"Noaa", | |
"nowrap", | |
"nunomaduro", | |
"pestphp", | |
"phpstan", | |
"phpunit", | |
"Queueable", | |
"ratelimit", | |
"Spatie", | |
"Subnavigation", | |
"svgs", | |
"testbench" | |
], | |
"workbench.tree.enableStickyScroll": false, | |
"editor.stickyScroll.enabled": false, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"workbench.colorTheme": "Catppuccin Mocha", | |
"workbench.sideBar.location": "right", | |
"chat.editing.alwaysSaveWithGeneratedChanges": true, | |
"bladeFormatter.format.sortTailwindcssClasses": true, | |
// "editor.formatOnSave": true, | |
// "editor.codeActionsOnSave": { | |
// "source.organizeImports": "always" | |
// } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment