Skip to content

Instantly share code, notes, and snippets.

@leonardoapolinario
leonardoapolinario / gist:bf77f73ef0b08baf5d233c30cd3fb9ec
Last active February 21, 2022 19:10
Configure IPython as default python interpreter / terminal on Visual Studio Code (VSCode)
# Go to Preferences -> Settings -> Python -> Terminal: Launch Args -> Edit in settings.json
# Add the line
"python.terminal.launchArgs": [
"-m",
"IPython",
"--no-autoindent",
]