Last active
July 3, 2020 16:37
-
-
Save thetinygoat/1b7c16d5d927ac9bde16b4e67450dd4a 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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
"python.linting.pylintPath": "/usr/bin/pylint", | |
"python.formatting.blackPath": "/usr/bin/black", | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
"extensions.showRecommendationsOnlyOnDemand": true, | |
"extensions.ignoreRecommendations": true, | |
"files.autoSave": "onFocusChange", | |
"editor.rulers": [ | |
80 | |
], | |
"window.menuBarVisibility": "toggle", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
}, | |
}, | |
"editor.formatOnSave": true, | |
"python.formatting.provider": "black", | |
"java.semanticHighlighting.enabled": false, | |
"workbench.colorTheme": "Night Owl", | |
"go.formatTool": "goimports", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment