Created
January 6, 2026 13:08
-
-
Save AprilSylph/40f93095a7b42d56fc77682db836cba3 to your computer and use it in GitHub Desktop.
VS Code Config Files
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
| { | |
| "recommendations": [ | |
| "dbaeumer.vscode-eslint", | |
| "editorconfig.editorconfig", | |
| "github.github-vscode-theme", | |
| "github.vscode-github-actions", | |
| "github.vscode-pull-request-github", | |
| "mhutchie.git-graph" | |
| ] | |
| } |
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
| { | |
| "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