Skip to content

Instantly share code, notes, and snippets.

@chrissyast
Last active September 11, 2021 07:12
Show Gist options
  • Save chrissyast/a2ae93fcd0ea78a0320dbd0bd474c834 to your computer and use it in GitHub Desktop.
Save chrissyast/a2ae93fcd0ea78a0320dbd0bd474c834 to your computer and use it in GitHub Desktop.
vscode settings
{
"files.autoSave": "afterDelay",
"git.autofetch": true,
"workbench.settings.useSplitJSON": true,
"workbench.editor.enablePreview": false,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.value": 6,
"workbench.editor.highlightModifiedTabs": true,
"files.autoSaveDelay": 5000,
"editor.wordWrap": "on",
"sync.gist": "d665c6c3e2f730d20c47767360cc589a",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.mouseWheelZoom": true,
"workbench.editorAssociations": [
{
"viewType": "jupyter-notebook",
"filenamePattern": "*.ipynb"
}
],
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"python.languageServer": "Pylance",
"MicroPython.executeButton": [
{
"text": "▶",
"tooltip": "Run",
"alignment": "left",
"command": "extension.executeFile",
"priority": 3.5
}
],
"MicroPython.syncButton": [
{
"text": "$(sync)",
"tooltip": "sync",
"alignment": "left",
"command": "extension.execute",
"priority": 4
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment