Skip to content

Instantly share code, notes, and snippets.

@liketurbo
Created April 17, 2025 10:07
Show Gist options
  • Save liketurbo/4b14f096fa402f2fb5bb9d937152a83c to your computer and use it in GitHub Desktop.
Save liketurbo/4b14f096fa402f2fb5bb9d937152a83c to your computer and use it in GitHub Desktop.
VS Code - Separate tmux sessions per project
{
"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