Last active
February 7, 2018 23:38
-
-
Save rob-kistner/cc0031deb53162b2fcba1c82a8362ac0 to your computer and use it in GitHub Desktop.
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 settings in this file to overwrite the default settings | |
| { | |
| "editor.fontFamily": "Operator Mono", | |
| "editor.fontWeight": "300", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 17, | |
| "editor.lineHeight": 21, | |
| "editor.renderWhitespace": "boundary", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "editor.formatOnPaste": false, | |
| // Use tabs | |
| "editor.tabSize": 4, | |
| "editor.insertSpaces": true, | |
| "editor.detectIndentation": true, | |
| // Emmet defaults | |
| "emmet.triggerExpansionOnTab": true, | |
| "emmet.includeLanguages": { | |
| "pug": "jade", | |
| "vue": "html", | |
| "vue-html": "html" | |
| }, | |
| "terminal.integrated.fontSize": 16, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "git.enableSmartCommit": true, | |
| // JSLint settings | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "window.zoomLevel": 1, | |
| // theme color customization: Quills | |
| "workbench.colorTheme": "Quills", | |
| "editor.tokenColorCustomizations": { | |
| "[Quills]": { | |
| "comments": "#628583" | |
| } | |
| }, | |
| "workbench.colorCustomizations": { | |
| "[Quills]": { | |
| "sideBar.background": "#1b1f28", | |
| "terminal.background": "#1b1f28" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment