Skip to content

Instantly share code, notes, and snippets.

@lidopaglia
Last active December 16, 2016 21:42
Show Gist options
  • Save lidopaglia/af2622bfe536640cc2bed78a3fdf6961 to your computer and use it in GitHub Desktop.
Save lidopaglia/af2622bfe536640cc2bed78a3fdf6961 to your computer and use it in GitHub Desktop.
Custom settings for running Visual Studio Code on macOS
// Place your key bindings in this file to overwrite the defaults
// 🎩 tip: https://blogs.technet.microsoft.com/heyscriptingguy/2016/12/07/make-visual-studio-code-more-like-the-integrated-scripting-environment/
[
{ "key": "f8", "command":"workbench.action.terminal.runSelectedText",
"when": "editorTextFocus && editorLangId == 'powershell'" },
{
"key": "shift+cmd+d", "command": "workbench.action.terminal.focus",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+i", "command": "workbench.action.focusFirstEditorGroup",
"when": "terminalFocus"
}
]
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Roboto Mono",
"editor.fontSize": 16,
"terminal.integrated.fontFamily": "'Source Code Pro', 'Courier New', monospace",
"terminal.integrated.fontLigatures": false,
"terminal.integrated.fontSize": 16,
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.shell.osx": "/usr/local/bin/powershell"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment