Created
March 4, 2018 05:20
-
-
Save nikkaroraa/dc713ad2c4de14126295fbcf95263f84 to your computer and use it in GitHub Desktop.
VS Code User-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
| { | |
| "workbench.colorTheme": "Cobalt2", | |
| "files.autoSave": "onFocusChange", | |
| "editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontSize": 17, | |
| "editor.lineHeight": 25, | |
| "editor.letterSpacing": 0.5, | |
| "files.trimTrailingWhitespace": true, | |
| "editor.fontWeight": "400", | |
| "prettier.eslintIntegration": true, | |
| "editor.cursorStyle": "line", | |
| "editor.cursorWidth": 3, | |
| "editor.cursorBlinking": "blink", | |
| // Very important: Install this plugin: https://github.com/be5invis/vscode-custom-css | |
| // you'll need to change this to an absolute path on your computer | |
| "vscode_custom_css.imports": [ | |
| "/Volumes/Macintosh HD/Users/iamoperand/.vscodestyles.css" | |
| ], | |
| "editor.renderWhitespace": "all", | |
| "terminal.integrated.fontSize": 16, | |
| "terminal.integrated.fontFamily": "Inconsolata for Powerline", | |
| "terminal.integrated.cursorStyle": "line", | |
| "terminal.integrated.cursorBlinking": true, | |
| "window.zoomLevel": 0, | |
| "todohighlight.isEnable": true, | |
| "workbench.iconTheme": "vscode-icons", | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "emmet.includeLanguages": { | |
| "markdown": "html", | |
| "edge": "html", | |
| "javascript": "javascriptreact", | |
| "blade": "html", | |
| "nunjucks": "html", | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "html": { | |
| "attr_quotes": "single" | |
| }, | |
| "jsx": { | |
| "self_closing_tag": true | |
| } | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "emmet.showExpandedAbbreviation": "never" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment