- Settings use the Dainty theme for VS Code
- The used font family is Jetbrains Mono
Last active
January 31, 2021 12:45
-
-
Save johanvergeer/f2280cb1403b65751ad3047a515c67a1 to your computer and use it in GitHub Desktop.
Toggle between presentation and coding mode in VS Code using Settings Cycler plugin
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
[ | |
{ | |
"key": "F4", | |
"command": "settings.cycle.presentation", | |
} | |
] |
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
{ | |
"workbench.colorTheme": "Dainty – Material Theme Ocean", | |
"files.autoSave": "onFocusChange", | |
"terminal.integrated.fontFamily": "Jetbrains Mono", | |
"editor.fontFamily": "Jetbrains Mono", | |
"editor.suggest.showStatusBar": false, | |
"settings.cycle": [ | |
{ | |
"id": "presentation", | |
"overrideWorkspaceSettings": false, | |
"values": [ | |
{ | |
"workbench.statusBar.visible": false, | |
"workbench.activityBar.visible": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.overviewRulerBorder": false, | |
"editor.fontSize": 36, | |
"terminal.integrated.fontSize": 36, | |
"workbench.editor.showTabs": false, | |
"editor.lineNumbers": "off", | |
}, | |
{ | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": true, | |
"editor.hideCursorInOverviewRuler": false, | |
"editor.overviewRulerBorder": true, | |
"editor.fontSize": 13, | |
"terminal.integrated.fontSize": 13, | |
"workbench.editor.showTabs": true, | |
"editor.lineNumbers": "on", | |
} | |
] | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment