Skip to content

Instantly share code, notes, and snippets.

@johanvergeer
Last active January 31, 2021 12:45
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 johanvergeer/f2280cb1403b65751ad3047a515c67a1 to your computer and use it in GitHub Desktop.
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
[
{
"key": "F4",
"command": "settings.cycle.presentation",
}
]
{
"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