VSCode Integrated Terminal Doesn’t Load .bashrc or .bash_profile
Simply add shell arguments to the VsCode settings.json file. Paths to the settings.json file are as follows: Windows: C:\Users\<username>\AppData\Roaming\Code\User\settings.json` Linux: $HOME/.config/Code/User/settings.json Mac: $HOME/Library/Application\ Support/Code/User/settings.json Add one of the following: “terminal.integrated.shellArgs.windows”: [“-l”], “terminal.integrated.shellArgs.linux”: [“-l”], “terminal.integrated.shellArgs.osx”: [“-l”], This will launch your shell of choice with the login argument. This will thus execute any user profile that is … Read more