Last active
December 15, 2023 11:18
-
-
Save Bktero/a1e55452be9c710f0f6169f95fd68c03 to your computer and use it in GitHub Desktop.
Settings and extensions for Visual Studio Code
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
# Enable autosave | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 50, | |
# Hide the minimap | |
"editor.minimap.enabled": false | |
# Draw vertical bars in the editor | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
# For the "CodeRunner" plugin | |
"code-runner.clearPreviousOutput": true, | |
"code-runner.runInTerminal": true|false, | |
# For the "Spell Right" plugin | |
"spellright.language": [ | |
"en" | |
], | |
"spellright.documentTypes": [ | |
"latex", | |
"plaintext", | |
"markdown" | |
], |
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
"python.pythonPath": "C:\\some\\path\to\\python.exe", | |
# Format but don't wrap line with 80 characeter wide columns | |
# See https://stackoverflow.com/a/48055385/12342718 | |
"python.formatting.provider": "autopep8", | |
"python.formatting.autopep8Args": [ | |
"--max-line-length=200" | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment