Skip to content

Instantly share code, notes, and snippets.

@ahinkle
Created May 25, 2024 02:17
Show Gist options
  • Save ahinkle/d99742b14dab934300e7120887420bbd to your computer and use it in GitHub Desktop.
Save ahinkle/d99742b14dab934300e7120887420bbd to your computer and use it in GitHub Desktop.
settings.json
{
"workbench.sideBar.location": "right",
"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,
"workbench.colorTheme": "Natty",
"window.commandCenter": false,
"workbench.editor.editorActionsLocation": "hidden",
"workbench.layoutControl.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.fontLigatures": false,
"workbench.tree.enableStickyScroll": false,
"editor.stickyScroll.enabled": false,
"github.copilot.editor.enableAutoCompletions": 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