Created
September 6, 2018 23:09
-
-
Save majames/93d996ffefe2962617b87a50172a6413 to your computer and use it in GitHub Desktop.
vscode 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
{ | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.openEditors.visible": 0, | |
"explorer.autoReveal": false, | |
"files.autoSave": "onFocusChange", | |
"editor.rulers": [ | |
100 | |
], | |
// open all files in new tabs | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.editor.enablePreview": false, | |
// vim | |
"vim.useCtrlKeys": false, | |
// git extension | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
// todo highlighting | |
"todohighlight.keywords": [ | |
"TODO", | |
"TODO:" | |
], | |
// typescript | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
// terminal | |
"terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
// emojis | |
"emojisense.languages": { | |
"markdown": true, | |
"json": true, | |
"typescript": true, | |
"typescriptreact": true | |
}, | |
"window.zoomLevel": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment