Created
February 21, 2019 15:48
-
-
Save mewdriller/3b9bd639989ec2cbd02f650fed220b84 to your computer and use it in GitHub Desktop.
VS Code Settings
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
{ | |
// General Settings: | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 13, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [ | |
// 54, | |
80, | |
100 | |
], | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"explorer.autoReveal": false, | |
"explorer.openEditors.visible": 0, | |
"files.eol": "\n", | |
"javascript.validate.enable": false, | |
"window.zoomLevel": 0, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
// Language Settings: | |
"[git-commit]": { | |
"editor.rulers": [50, 72] | |
}, | |
"[git-rebase]": { | |
"editor.rulers": [50, 72] | |
}, | |
// Extension Settings: | |
"explorer.confirmDragAndDrop": false, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.views.fileHistory.enabled": true, | |
"gitlens.views.lineHistory.enabled": true, | |
"html.format.enable": false, | |
"workbench.colorTheme": "Night Owl" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment