Skip to content

Instantly share code, notes, and snippets.

@stuartleeks
Created November 7, 2019 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartleeks/9d46ed2ac07c0b8186cffbcaa7d34486 to your computer and use it in GitHub Desktop.
Save stuartleeks/9d46ed2ac07c0b8186cffbcaa7d34486 to your computer and use it in GitHub Desktop.
Windows Terminal config snippets
// profile for azbrowse (including navigating to subscription - hint: update the subscription id)
{
"acrylicOpacity": 0.5,
"closeOnExit": true,
"colorScheme": "Ubuntu-sl",
"commandline": "C:\\Windows\\System32\\bash.exe -c \"azbrowse navigate /subscriptions/00000000-0000-0000-0000-000000000000\"",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Fira Code",
"fontSize": 14,
"guid": "{ff7c86ad-654b-4b8e-83c6-a4a0afba8b6c}",
"historySize": 9001,
"icon": "ms-appdata:///roaming/ubuntu-48.png",
"name": "azbrowse",
"padding": "10, 10, 10, 10",
"snapOnInput": true,
"startingDirectory": "$HOME",
"useAcrylic": false
}
// profile for docker exec into VSCode dev container (hint: replace `my-devcontainer-name` with your devcontainer name)
{
"acrylicOpacity": 0.5,
"closeOnExit": true,
"commandline": "C:\\Windows\\System32\\bash.exe -c \"docker exec -it $(docker ps --filter \"label=vsch.remote.devPort\" | grep my-devcontainer-name | awk '{print $1}') bash\"",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Fira Code",
"fontSize": 14,
"guid": "{ff7c86ad-654b-4b8e-83c6-a4a0afba8bad}",
"historySize": 9001,
"icon": "ms-appdata:///roaming/ubuntu-48.png",
"name": "vscode-containers - oss_databricks_mock_api",
"padding": "10, 10, 10, 10",
"snapOnInput": true,
"startingDirectory": "$HOME",
"useAcrylic": false
}
// profile for ssh connection (hint: replace my-public-key and ssh-host.local)
{
"acrylicOpacity": 0.5,
"closeOnExit": true,
"colorScheme": "Campbell",
"commandline": "C:\\Windows\\System32\\bash.exe -c \"ssh -i ~/.ssh/my-public-key ssh-host.local\"",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Fira Code",
"fontSize": 14,
"guid": "{ff7c86ad-654b-4b8e-83c6-a4a0afba8b6d}",
"historySize": 9001,
"icon": "ms-appdata:///roaming/ubuntu-48.png",
"name": "tfdev",
"padding": "10, 10, 10, 10",
"snapOnInput": true,
"startingDirectory": "$HOME",
"useAcrylic": false
}
{
"background" : "#300A24",
"black" : "#2E3436",
"blue" : "#0037DA",
"brightBlack" : "#767676",
"brightBlue" : "#3B78FF",
"brightCyan" : "#61D6D6",
"brightGreen" : "#16C60C",
"brightPurple" : "#B4009E",
"brightRed" : "#E74856",
"brightWhite" : "#F2F2F2",
"brightYellow" : "#F9F1A5",
"cyan" : "#3A96DD",
"foreground" : "#FFFFFF",
"green" : "#13A10E",
"name" : "Ubuntu-sl",
"purple" : "#881798",
"red" : "#C50F1F",
"white" : "#CCCCCC",
"yellow" : "#C19C00"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment