Skip to content

Instantly share code, notes, and snippets.

@ajhsu
Last active October 11, 2016 03:41
Show Gist options
  • Save ajhsu/a32795a2f59ae464fc1ca45ef6188d35 to your computer and use it in GitHub Desktop.
Save ajhsu/a32795a2f59ae464fc1ca45ef6188d35 to your computer and use it in GitHub Desktop.
Sublime Text settings within Visual Studio Code
// keybinding.json
[
{
"key": "cmd+shift+[",
"command": "workbench.action.previousEditor"
},
{
"key": "cmd+shift+]",
"command": "workbench.action.nextEditor"
},
{
"key": "cmd+w",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "ctrl+alt+f",
"command": "editor.action.format",
"when": "editorHasFormattingProvider && editorTextFocus && !editorReadonly"
}
]
// settings.json
// Place your settings in this file to overwrite the default settings
{
"javascript.validate.enable": false,
// Controls the font family.
"editor.fontFamily": "Courier New",
// Controls the font size.
"editor.fontSize": 14,
// The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.tabSize": 2,
"files.associations": {
"*.css": "scss"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment