Last active
June 2, 2024 00:34
-
-
Save heaths/8973ad7b6067693d9a8e581be718d2ef to your computer and use it in GitHub Desktop.
VSCode configuration
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": "Fira Code, Hack, Consolas, monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 12, | |
"editor.renderControlCharacters": false, | |
"editor.renderWhitespace": "all", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"terminal.external.windowsExec": "C:\\Program Files\\PowerShell\\7\\pwsh.exe", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7\\pwsh.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"-nologo" | |
], | |
"terminal.integrated.fontFamily": "Hack, Consolas, monospace", | |
"terminal.integrated.fontSize": 12, | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "none", | |
"workbench.editor.highlightModifiedTabs": true, | |
"breadcrumbs.enabled": true, | |
"git.confirmSync": false, | |
"team.showWelcomeMessage": false, | |
"vsicons.dontShowNewVersionMessage": true, | |
"githubPullRequests.queries": [ | |
{ | |
"label": "Waiting For My Review", | |
"query": "is:open review-requested:${user}" | |
}, | |
{ | |
"label": "Reviewed By Me", | |
"query": "is:open reviewed-by:${user}" | |
}, | |
{ | |
"label": "Assigned To Me", | |
"query": "is:open assignee:${user}" | |
}, | |
{ | |
"label": "Created By Me", | |
"query": "is:open author:${user}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment