Skip to content

Commit

Permalink
Fix default shell of terminal in vscode on Linux
Browse files Browse the repository at this point in the history
Follow GH-452
  • Loading branch information
kachick committed Dec 4, 2024
1 parent e2f555a commit 774182a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@
},
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"args": ["-l"], // Delegate to zsh/fish/nushell after bash. See GH-452
"icon": "terminal-bash"
}
},
"window.title": "${activeEditorMedium}${separator}${rootName}",
"files.watcherExclude": {
"**.log": true,
Expand Down

0 comments on commit 774182a

Please sign in to comment.