Created
April 17, 2025 10:07
-
-
Save liketurbo/4b14f096fa402f2fb5bb9d937152a83c to your computer and use it in GitHub Desktop.
VS Code - Separate tmux sessions per project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.profiles.linux": { | |
"bash": { | |
"path": "bash", | |
"icon": "terminal-bash" | |
}, | |
"zsh": { | |
"path": "zsh" | |
}, | |
"fish": { | |
"path": "fish" | |
}, | |
"tmux": { | |
"path": "tmux", | |
"icon": "terminal-tmux" | |
}, | |
"pwsh": { | |
"path": "pwsh", | |
"icon": "terminal-powershell" | |
}, | |
"tmux-shell": { | |
"path": "tmux", | |
"args": [ | |
"new-session", | |
"-A", | |
"-s", | |
"vscode:${workspaceFolder}" | |
] | |
} | |
}, | |
"terminal.integrated.defaultProfile.linux": "tmux-shell" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment