Skip to content

Instantly share code, notes, and snippets.

@priyanshujain
Last active February 12, 2020 10:50
Show Gist options
  • Save priyanshujain/fde9c3ebf13728bb961321ea89daabdb to your computer and use it in GitHub Desktop.
Save priyanshujain/fde9c3ebf13728bb961321ea89daabdb to your computer and use it in GitHub Desktop.
my python vscode setup
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"workbench.editor.highlightModifiedTabs": true,
"files.autoSave": "afterDelay",
"explorer.sortOrder": "type",
"editor.cursorStyle": "block",
"editor.cursorBlinking": "smooth",
"files.trimFinalNewlines": true,
"editor.acceptSuggestionOnEnter": "off",
"python.pythonPath": "./bin/python",
"python.sortImports.args": [
"-rc",
"-w 99",
"-m 3",
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length=99"
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment