Skip to content

Instantly share code, notes, and snippets.

@Bktero
Last active December 15, 2023 11:18
Show Gist options
  • Save Bktero/a1e55452be9c710f0f6169f95fd68c03 to your computer and use it in GitHub Desktop.
Save Bktero/a1e55452be9c710f0f6169f95fd68c03 to your computer and use it in GitHub Desktop.
Settings and extensions for Visual Studio Code
# 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"
],
"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