Created
April 28, 2017 14:54
-
-
Save trajano/59fdf798f109fb4e11f517792295bfe6 to your computer and use it in GitHub Desktop.
Archie's Visual Studio 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 key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+shift+f", | |
"command": "editor.action.formatDocument", | |
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+alt+f", | |
"command": "-editor.action.formatDocument", | |
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "editor.action.formatSelection", | |
"when": "editorHasDocumentSelectionFormattingProvider && editorHasSelection && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+f", | |
"command": "-editor.action.formatSelection", | |
"when": "editorHasDocumentSelectionFormattingProvider && editorHasSelection && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "beautify.format" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "xmlTools.formatXml" | |
}, | |
{ | |
"key": "ctrl+shift+alt+b", | |
"command": "-xmlTools.formatXml" | |
}, | |
{ | |
"key": "ctrl+shift+f", | |
"command": "editor.action.format" | |
}, | |
{ | |
"key": "ctrl+shift+w", | |
"command": "workbench.action.closeAllEditors" | |
}, | |
{ | |
"key": "ctrl+k ctrl+w", | |
"command": "-workbench.action.closeAllEditors" | |
}, | |
{ | |
"key": "ctrl+shift+s", | |
"command": "workbench.action.files.saveAll" | |
}, | |
{ | |
"key": "ctrl+k s", | |
"command": "-workbench.action.files.saveAll" | |
}, | |
{ | |
"key": "shift+alt+up", | |
"command": "editor.action.smartSelect.grow", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+alt+right", | |
"command": "-editor.action.smartSelect.grow", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+alt+down", | |
"command": "editor.action.smartSelect.shrink", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+alt+left", | |
"command": "-editor.action.smartSelect.shrink", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+f1", | |
"command": "workbench.action.terminal.focusAtIndex1" | |
}, | |
{ | |
"key": "alt+f2", | |
"command": "workbench.action.terminal.focusAtIndex2" | |
}, | |
{ | |
"key": "alt+f3", | |
"command": "workbench.action.terminal.focusAtIndex3" | |
}, | |
{ | |
"key": "alt+f4", | |
"command": "workbench.action.terminal.focusAtIndex4" | |
}, | |
{ | |
"key": "alt+f5", | |
"command": "workbench.action.terminal.focusAtIndex5" | |
}, | |
{ | |
"key": "alt+f6", | |
"command": "workbench.action.terminal.focusAtIndex6" | |
}, | |
{ | |
"key": "ctrl+shift+t", | |
"command": "workbench.action.terminal.new" | |
}, | |
{ | |
"key": "ctrl+shift+`", | |
"command": "-workbench.action.terminal.new" | |
}, | |
{ | |
"key": "ctrl+shift+s", | |
"command": "-workbench.action.files.saveAs" | |
} | |
] |
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 | |
{ | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
"update.channel": "none", | |
"files.autoSave": "onFocusChange", | |
"[markdown]": { | |
"editor.wordWrap": "bounded", | |
}, | |
"editor.fontSize": 16, | |
"editor.renderWhitespace": "boundary", | |
"editor.mouseWheelZoom": true, | |
"editor.scrollBeyondLastLine": false, | |
"vsicons.projectDetection.autoReload": true, | |
"vsicons.dontShowNewVersionMessage": true, | |
"window.zoomLevel": 0, | |
"workbench.colorTheme": "Monokai Dimmed" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment