Last active
December 6, 2018 13:37
-
-
Save chadjvw/131341322eae18c709809d86b8cbd080 to your computer and use it in GitHub Desktop.
VS Code Presentation/Live Coding Settings
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
{ | |
"workbench.colorCustomizations": { | |
"editorCursor.background": "#ffffff", | |
"editorCursor.foreground": "#0000bb", | |
"editor.lineHighlightBackground": "#f0f0f0", | |
"editor.selectionBackground": "#aaeeff" | |
}, | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": false, | |
"explorer.openEditors.visible": 0, | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "none", | |
"editor.renderIndentGuides": false, | |
"editor.fontFamily": "IBM Plex Mono", | |
"editor.fontWeight": "500", | |
"editor.fontSize": 24, | |
"terminal.integrated.fontFamily": "IBM Plex Mono", | |
"terminal.integrated.fontWeight": "800", | |
"terminal.integrated.fontSize": 28, | |
"terminal.integrated.shell.linux": "/bin/bash", | |
"editor.formatOnSave": false, | |
"workbench.colorTheme": "Default Light+", | |
"workbench.iconTheme": "simple-icons", | |
"files.trimTrailingWhitespace": true, | |
"markdown.extension.toc.githubCompatibility": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Got the idea from André Staltz.
Works great! Give it a try.