Last active
August 25, 2017 12:01
-
-
Save n9ti/1c7eeb8f0153b2ff072fa8f8b725dbc8 to your computer and use it in GitHub Desktop.
My vscode setting
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
{ | |
"atomKeymap.promptV3Features": true, | |
"editor.fontSize": 16, | |
"editor.tabSize": 2, | |
"editor.renderLineHighlight": "gutter", | |
"editor.occurrencesHighlight": false, | |
"editor.selectionHighlight": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": false, | |
"emmet.syntaxProfiles": { | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue" | |
], | |
"highlight-matching-tag.style": { | |
"borderWidth": "0 0 2px 0", | |
"borderStyle": "solid", | |
"borderColor": "rgba(0,150,136,0.5)", | |
"backgroundColor": "rgba(62,69,81,0.2)" | |
}, | |
"highlight-matching-tag.leftStyle": null, | |
"highlight-matching-tag.rightStyle": null, | |
"terminal.integrated.fontFamily": "Inconsolata for Powerline", | |
"terminal.integrated.fontSize": 22, | |
"terminal.integrated.lineHeight": 1.0, | |
"workbench.colorTheme": "One Dark Pro Vivid", | |
"workbench.iconTheme": "material-icon-theme", | |
"window.zoomLevel": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment