Last active
March 7, 2024 11:41
-
-
Save shreyansp/dbd21d34f602ae534fea4ac709948330 to your computer and use it in GitHub Desktop.
VSCode personalisation
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
// Color customisation complemetry to monokai, and window colors | |
"workbench.colorCustomizations": { | |
"activityBar.inactiveForeground": "#f3fef252", | |
"diffEditor.insertedTextBackground": "#a6e22e2c", | |
"diffEditor.removedTextBackground": "#f926735d", | |
"editor.background": "#1c1d18", | |
}, | |
// VSCode window | |
"window.title": "${dirty}${rootName}$${separator}${activeEditorShort}", | |
// Diffing preferences | |
"diffEditor.ignoreTrimWhitespace": false, | |
// Source Control | |
"git.untrackedChanges": "separate", | |
// autoDocstring | |
"autoDocstring.docstringFormat": "one-line-sphinx", | |
// Prevent gitlens from unnecesarrliy trying to connect online | |
"gitlens.currentLine.pullRequests.enabled": false, | |
"gitlens.hovers.autolinks.enhanced": false, | |
"gitlens.hovers.pullRequests.enabled": false, | |
"gitlens.statusBar.pullRequests.enabled": false, | |
"gitlens.views.branches.pullRequests.enabled": false, | |
"gitlens.views.branches.pullRequests.showForBranches": false, | |
"gitlens.views.branches.pullRequests.showForCommits": false, | |
"gitlens.views.commits.pullRequests.enabled": false, | |
"gitlens.views.commits.pullRequests.showForBranches": false, | |
"gitlens.views.commits.pullRequests.showForCommits": false, | |
"gitlens.views.contributors.pullRequests.enabled": false, | |
"gitlens.views.contributors.pullRequests.showForCommits": false, | |
"gitlens.views.searchAndCompare.pullRequests.showForCommits": false, | |
"gitlens.views.searchAndCompare.pullRequests.enabled": false, | |
"gitlens.views.repositories.pullRequests.showForCommits": false, | |
"gitlens.views.repositories.pullRequests.showForBranches": false, | |
"gitlens.views.repositories.pullRequests.enabled": false, | |
"gitlens.views.remotes.pullRequests.showForCommits": false, | |
"gitlens.views.remotes.pullRequests.showForBranches": false, | |
"gitlens.views.remotes.pullRequests.enabled": false, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment