Skip to content

Instantly share code, notes, and snippets.

@jacqinthebox
Last active March 17, 2018 13:10
Show Gist options
  • Select an option

  • Save jacqinthebox/faa66c699a59ade5ebacdfee416c2550 to your computer and use it in GitHub Desktop.

Select an option

Save jacqinthebox/faa66c699a59ade5ebacdfee416c2550 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings #vscode
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 12,
"window.zoomLevel": 1,
"terminal.integrated.fontFamily": "Meslo LG M DZ for Powerline",
"window.restoreWindows": "none",
"terminal.integrated.fontSize": 12,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"workbench.colorTheme": "Monokai Dimmed",
"powershell.scriptAnalysis.enable": true,
"editor.formatOnType": true,
"editor.formatOnSave": true
}
//Mac
{
"terminal.integrated.fontFamily": "Meslo LG M for Powerline",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dark+ Material",
"editor.fontSize": 16,
"terminal.integrated.fontSize": 14,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"powershell.scriptAnalysis.enable": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"files.autoSave": "afterDelay"
}
//Keybindings
{
"key": "ctrl+k",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+j",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment