Skip to content

Instantly share code, notes, and snippets.

@jamesmacaulay
Last active October 20, 2016 18:09
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 jamesmacaulay/71504f448b2627c864db63ac03012140 to your computer and use it in GitHub Desktop.
Save jamesmacaulay/71504f448b2627c864db63ac03012140 to your computer and use it in GitHub Desktop.
Visual Studio Code settings and keybindings
root = true
[*]
indent_style = space
indent_size = 2
[*.elm]
indent_size = 4
EditorConfig.EditorConfig-0.3.4
abadi199.elm-format-0.1.0
rebornix.Ruby-0.9.0
sbrink.elm-0.8.3
wmaurer.join-lines-0.1.5
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "shift+cmd+[", "command": "workbench.action.previousEditor" },
{ "key": "shift+cmd+]", "command": "workbench.action.nextEditor" },
{ "key": "shift+alt+cmd+[", "command": "editor.fold" },
{ "key": "shift+alt+cmd+]", "command": "editor.unfold" },
{ "key": "cmd+r", "command": "workbench.action.showAllSymbols" },
{ "key": "cmd+t", "command": "workbench.action.quickOpen" },
{ "key": "cmd+t", "command": "workbench.action.quickOpenNavigateNext", "when": "inQuickOpen" },
{ "key": "alt+cmd+j", "command": "workbench.action.togglePanel" }
]
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Source Code Pro",
// "editor.fontWeight": "100",
"editor.fontSize": 14,
"editor.tabSize": 2,
"window.reopenFolders": "all",
"elm-format.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment