Skip to content

Instantly share code, notes, and snippets.

@thetinygoat
Last active July 3, 2020 16:37
Show Gist options
  • Save thetinygoat/1b7c16d5d927ac9bde16b4e67450dd4a to your computer and use it in GitHub Desktop.
Save thetinygoat/1b7c16d5d927ac9bde16b4e67450dd4a to your computer and use it in GitHub Desktop.
{
"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