Skip to content

Instantly share code, notes, and snippets.

@mkontani
Last active September 6, 2020 00:15
Show Gist options
  • Save mkontani/b4209148837aef341b404aa059470745 to your computer and use it in GitHub Desktop.
Save mkontani/b4209148837aef341b404aa059470745 to your computer and use it in GitHub Desktop.
Windows Terminal Setting
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"profiles": [
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"acrylicOpacity": 0.8,
"closeOnExit": true,
"fontSize": 12,
"historySize": 9001,
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%",
"useAcrylic": true
},
{
"guid": "{a5609e8b-9458-4071-b7b9-ad3c87f5c04f}",
"name": "PowerShell7",
"commandline": "C:\\Program Files\\PowerShell\\7\\pwsh",
"icon": "C:\\Program Files\\PowerShell\\7\\assets\\Powershell_av_colors.ico",
"hidden": false,
"acrylicOpacity": 0.8,
"closeOnExit": true,
"fontSize": 12,
"historySize": 9001,
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%",
"useAcrylic": true
},
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"acrylicOpacity": 0.8,
"closeOnExit": true,
"colorScheme": "Campbell",
"fontFace": "consolas",
"fontSize": 12,
"historySize": 9001,
"snapOnInput": true,
"startingDirectory": "//wsl$/Ubuntu/home/mkontani",
"useAcrylic": true
},
{
"guid": "{0bcd89dd-cab3-4a7e-bd8c-14cacd2730de}",
"hidden": false,
"name": "Nu Shell",
"commandline": "nu.exe",
"acrylicOpacity": 0.8,
"closeOnExit": true,
"fontSize": 12,
"historySize": 9001,
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%",
"useAcrylic": true
},
{
"guid": "{8da2ea6a-bdfe-44b7-9ef5-7c817904be3c}",
"hidden": false,
"name": "Git Bash",
"acrylicOpacity": 0.8,
"closeOnExit": true,
"colorScheme": "Campbell",
"commandline": "C:\\Program Files\\Git\\bin\\bash.exe",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "consolas",
"fontSize": 12,
"historySize": 9001,
"icon": "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico",
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%",
"useAcrylic": true
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
"acrylicOpacity": 0.8,
"closeOnExit": true,
"colorScheme": "Campbell",
"fontFace": "consolas",
"fontSize": 12,
"historySize": 9001,
"snapOnInput": true,
"startingDirectory": "%USERPROFILE%",
"useAcrylic": true
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
],
// Add custom color schemes to this array
"schemes": [],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}
@mkontani
Copy link
Author

mkontani commented Sep 6, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment