Skip to content

Instantly share code, notes, and snippets.

@tcarrio
Created September 20, 2023 19:38
Show Gist options
  • Save tcarrio/091ad839af9f1b6390328c7689843e2c to your computer and use it in GitHub Desktop.
Save tcarrio/091ad839af9f1b6390328c7689843e2c to your computer and use it in GitHub Desktop.
Configuring VS Code integrated terminal shell

In my specific scenario, I am using fish but installed by the Nix package manager on macOS.

The following configuration resides in my user settings JSON file.

{
"terminal.integrated.profiles.osx": {
"bash": {
"path": [
"/Users/tcarrio/.nix-profile/bin/fish",
"fish",
],
"icon": "terminal-bash",
},
},
"terminal.integrated.defaultProfile.osx": "fish",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment