Skip to content

Instantly share code, notes, and snippets.

@martin-martin
Created November 26, 2021 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martin-martin/7823724e43bf5c5b56ecf99655b72963 to your computer and use it in GitHub Desktop.
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
{
"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