Use VSCode
Set integrated terminal to read from .bash_profile
.bash_profileOpen settings.json and ensure the following setting exists:
# ...
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"args": ["-l"], # make sure this exists
"icon": "terminal-bash"
},
},
# ...Last updated
Was this helpful?