Last active
February 12, 2020 10:50
-
-
Save priyanshujain/fde9c3ebf13728bb961321ea89daabdb to your computer and use it in GitHub Desktop.
my python vscode setup
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
{ | |
"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