Created
October 25, 2016 06:40
-
-
Save hmps/f8b4c41e80038f29adc1c1d95fec6395 to your computer and use it in GitHub Desktop.
VS Code settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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