Last active
March 1, 2017 21:53
-
-
Save slowmove/9ac0ecddfd71c35ecec00c0030e9ba2b to your computer and use it in GitHub Desktop.
VS Code
This file contains 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 key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "ctrl+alt+left", "command": "workbench.action.navigateBack" }, | |
{ "key": "ctrl+alt+right", "command": "workbench.action.navigateForward" } | |
] |
This file contains 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
.ejs | |
Align | |
C# | |
cdnjs | |
Docker Support | |
EditorConfig for VS Code | |
Git History (git log) | |
Go | |
Open in GitHub / Bitbucket / VisualStudio.com | |
PHP Intellisense - Crane | |
Prettify JSON | |
Python | |
vscode-elixir | |
XML Formatter |
This file contains 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
{ | |
"workbench.editor.showTabs": false, | |
"workbench.editor.enablePreview": false, | |
"debug.inlineValues": true, | |
"editor.formatOnPaste": true, | |
"editor.renderIndentGuides": true, | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"explorer.openEditors.visible": 5, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/coverage": true | |
}, | |
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib", | |
"typescript.check.tscVersion": false, | |
"typescript.disableAutomaticTypeAcquisition": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment