Created
November 26, 2021 18:49
-
-
Save martin-martin/7823724e43bf5c5b56ecf99655b72963 to your computer and use it in GitHub Desktop.
VS Code workspace settings JSON file with sensible default settings for video recording at Real Python
This file contains 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
{ | |
"window.zoomLevel": 3, | |
"workbench.startupEditor": "none", | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter.notebook.ipynb" | |
}, | |
// remove distracting elements | |
"breadcrumbs.enabled": false, | |
"editor.minimap.enabled": false, | |
"workbench.statusBar.visible": false, | |
"workbench.activityBar.visible": false, | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"editor.cursorBlinking": "solid", | |
// increase font sizes | |
"editor.fontSize": 24, | |
"terminal.integrated.fontSize": 24, | |
// reduce visual errors displayed in UI | |
"problems.decorations.enabled": false, | |
"problems.autoReveal": false, | |
"outline.problems.enabled": false, | |
"outline.problems.colors": false, | |
"outline.problems.badges": false | |
// don't show quick suggestions while typing | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment