Created
April 10, 2020 16:01
-
-
Save matheusps/f46d3013ebc3d6b592a903e2ae251b41 to your computer and use it in GitHub Desktop.
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
| { | |
| // general | |
| "window.zoomLevel": 1, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.tabSize": 2, | |
| "editor.rulers": [80, 120], | |
| "editor.formatOnSave": false, | |
| "editor.parameterHints.enabled": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.renderLineHighlight": "gutter", | |
| // theme & icon | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "city-lights-icons-vsc", | |
| // font | |
| "editor.fontFamily": "Dank Mono", // you need to buy Dank mono! | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, | |
| // eslint | |
| "eslint.packageManager": "yarn", | |
| // emmet | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx", | |
| }, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| }, | |
| // formaters | |
| "[javascript]": { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| } | |
| }, | |
| "[javascriptreact]": { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| } | |
| }, | |
| "[typescript]": { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| } | |
| }, | |
| "[typescriptreact]": { | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| } | |
| }, | |
| "files.associations": { | |
| ".sequelizerc": "javascript", | |
| ".stylelintrc": "json", | |
| ".prettierrc": "json" | |
| }, | |
| // imports | |
| "javascript.suggest.autoImports": true, // i love auto imports, disable if you not | |
| "typescript.suggest.autoImports": true, // i love auto imports, disable if you not | |
| "javascript.updateImportsOnFileMove.enabled": "never", | |
| "typescript.updateImportsOnFileMove.enabled": "never", | |
| // zen - i use it a lot | |
| "zenMode.hideTabs": false, | |
| "zenMode.hideStatusBar": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment