Skip to content

Instantly share code, notes, and snippets.

@hmps
Created October 25, 2016 06:40
Show Gist options
  • Save hmps/f8b4c41e80038f29adc1c1d95fec6395 to your computer and use it in GitHub Desktop.
Save hmps/f8b4c41e80038f29adc1c1d95fec6395 to your computer and use it in GitHub Desktop.
VS Code settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Fira Mono for Powerline",
"editor.fontSize": "14px",
"editor.tabSize": 2,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true,
"editor.formatOnSave": true,
"editor.lineNumbers": "relative",
"editor.renderIndentGuides": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/jspm_packages/**": true
},
"files.exclude": {
"node_modules/": true,
"dist/": true,
"jspm_packages/": true,
".vscode/": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.ngfactory.ts": {
"when": "$(basename).ts"
}
},
"files.trimTrailingWhitespace": false,
"extensions.autoUpdate": false,
"terminal.external.osxExec": "iTerm.app",
"auto-rename-tag.activationOnLanguage": [
"html",
"xml",
"php",
"javascriptreact",
"javascript"
],
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
// Swap ";" and ",", since that is easier on Scandinavian keyboard
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
";"
],
"after": [
","
]
},
{
"before": [
","
],
"after": [
";"
]
}
],
"vim.useCtrlKeys": true,
"files.insertFinalNewline": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment