Last active
August 17, 2025 09:23
-
-
Save andfanilo/ae99aed9c454a46c1dbfe6a0b9fa0012 to your computer and use it in GitHub Desktop.
VSCode screencast settings, edited from from https://dev.to/5t3ph/how-i-set-up-vscode-for-recording-a-screencast-be7
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.fontSize": 16, // 16 on demo, 14 otherwise | |
"editor.lineHeight": 20, // 22 on demo, 18 otherwise | |
"window.zoomLevel": 1.2, // 1.5 on demo, 1.2 otherwise | |
"git.enabled": false, // false on demo | |
"editor.formatOnSave": false, | |
"editor.formatOnPaste": false, | |
"editor.lineNumbers": "off", | |
"editor.quickSuggestionsDelay": 3000, | |
"editor.quickSuggestions": { | |
"other": false, // pass on false on YT demo | |
"comments": false, // pass on false on YT demo | |
"strings": false // pass on false on YT demo | |
}, | |
"breadcrumbs.enabled": false, // pass on false on YT demo | |
"workbench.statusBar.visible": true, // pass on false on YT demo | |
"editor.parameterHints.enabled": false, // pass on false on YT demo | |
"editor.minimap.enabled": false, | |
"editor.hover.enabled": false, // pass on false on YT demo | |
"editor.hover.delay": 5000, | |
"editor.hover.above": false, // pass on false on YT demo | |
"python.languageServer": "Pylance", | |
"python.analysis.autoSearchPaths": false, | |
"python.analysis.extraCommitChars": false, | |
"python.analysis.useLibraryCodeForTypes": false, | |
"workbench.activityBar.location": "bottom", | |
"workbench.colorCustomizations": { | |
"editor.foldBackground": "#1D1D1D00" | |
}, | |
// "workbench.colorTheme": "Default Light+", | |
"codesnap.showLineNumbers": false, | |
"codesnap.showWindowControls": false, | |
"codesnap.target": "window", | |
"codesnap.transparentBackground": true, | |
"python.analysis.diagnosticSeverityOverrides": { | |
"reportWildcardImportFromLibrary": "none" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment