Skip to content

Instantly share code, notes, and snippets.

@AprilSylph
Created January 6, 2026 13:08
Show Gist options
  • Select an option

  • Save AprilSylph/40f93095a7b42d56fc77682db836cba3 to your computer and use it in GitHub Desktop.

Select an option

Save AprilSylph/40f93095a7b42d56fc77682db836cba3 to your computer and use it in GitHub Desktop.
VS Code Config Files
{
"recommendations": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"github.github-vscode-theme",
"github.vscode-github-actions",
"github.vscode-pull-request-github",
"mhutchie.git-graph"
]
}
{
"chat.disableAIFeatures": true,
"diffEditor.ignoreTrimWhitespace": true,
"editor.unicodeHighlight.ambiguousCharacters": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"git.allowForcePush": true,
"git.autoStash": true,
"git.branchPrefix": "aprilsylph/",
"git.checkoutType": ["local", "remote"],
"git.confirmForcePush": false,
"git.confirmSync": false,
"git.ignoreRebaseWarning": true,
"githubPullRequests.createOnPublishBranch": "never",
"githubPullRequests.pullBranch": "never",
"githubPullRequests.queries": [
{
"label": "Created",
"query": "repo:${owner}/${repository} is:open is:pr author:${user} archived:false"
},
{
"label": "Assigned",
"query": "repo:${owner}/${repository} is:open is:pr assignee:${user} archived:false"
},
{
"label": "Mentioned",
"query": "repo:${owner}/${repository} is:open is:pr mentions:${user} archived:false"
},
{
"label": "Review requests",
"query": "repo:${owner}/${repository} is:open is:pr review-requested:${user} archived:false"
},
{
"label": "Recent activity",
"query": "repo:${owner}/${repository} is:open is:pr involves:${user} updated:>${today-30d} sort:updated-desc archived:false"
}
],
"keyboard.layout": "com.apple.keylayout.British",
"security.workspace.trust.untrustedFiles": "newWindow",
"window.menuBarVisibility": "classic",
"workbench.colorTheme": "GitHub Dark Dimmed",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment