Skip to content

Commit acd036c

Browse files
committed
Adding sample profile file for Windows Terminal
1 parent 243c367 commit acd036c

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed

extras/profiles.json

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
2+
// To view the default settings, hold "alt" while clicking on the "Settings" button.
3+
// For documentation on these settings, see: https://aka.ms/terminal-documentation
4+
5+
// Replace the GUIDs below
6+
// In python :
7+
// import uuid
8+
// uuid.uuid(4)
9+
10+
// You will need to modify this for your own paths
11+
12+
{
13+
"$schema": "https://aka.ms/terminal-profiles-schema",
14+
15+
"defaultProfile": "{2c4de343-38b8-51cf-b940-2309a097f518}",
16+
17+
"profiles":
18+
{
19+
"defaults":
20+
{
21+
// Put settings here that you want to apply to all profiles
22+
},
23+
"list":
24+
[
25+
{
26+
// Make changes here to the powershell.exe profile
27+
"guid": "{a6976a91-85fd-4393-a58d-bc92de8bdac5}",
28+
"name": "Windows PowerShell",
29+
"commandline": "powershell.exe",
30+
"hidden": false
31+
},
32+
{
33+
// Make changes here to the cmd.exe profile
34+
"guid": "{d62ecbfb-c1b9-40a3-995e-59f623d7e7db}",
35+
"name": "cmd",
36+
"commandline": "cmd.exe",
37+
"hidden": false
38+
},
39+
{
40+
// Make changes here to the Launch conda environemt
41+
"guid": "{0a4fd107-2b4e-4b80-aa2d-d26e3578d16a}",
42+
"name": "conda",
43+
"commandline": "cmd.exe /K C:\\Users\\chris\\miniconda3\\Scripts\\activate.bat C:\\Users\\chris\\miniconda3",
44+
"startingDirectory": "c:/Users/chris/win_dev",
45+
"icon": "c:/users/chris/OneDrive/Documents/icons/python-logo-sm.png",
46+
"hidden": false
47+
},
48+
{
49+
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
50+
"hidden": false,
51+
"name": "Azure Cloud Shell",
52+
"source": "Windows.Terminal.Azure"
53+
},
54+
{
55+
// Ubuntu
56+
"guid": "{2c4de343-38b8-51cf-b940-2309a097f518}",
57+
"hidden": false,
58+
"fontFace": "Cascadia Code PL",
59+
"name": "Ubuntu",
60+
"colorScheme" : "UbuntuLegit",
61+
"startingDirectory":"//wsl$/Ubuntu/home/chris/",
62+
"icon": "c:/users/chris/OneDrive/Documents/icons/small_vu.png",
63+
"source": "Windows.Terminal.Wsl"
64+
},
65+
{
66+
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
67+
"hidden": false,
68+
"name": "Ubuntu-18.04",
69+
"source": "Windows.Terminal.Wsl"
70+
}
71+
]
72+
},
73+
74+
// Add custom color schemes to this array
75+
"schemes": [
76+
{
77+
"background": "#2C001E",
78+
"black": "#4E9A06",
79+
"blue": "#3465A4",
80+
"brightBlack": "#555753",
81+
"brightBlue": "#729FCF",
82+
"brightCyan": "#34E2E2",
83+
"brightGreen": "#8AE234",
84+
"brightPurple": "#AD7FA8",
85+
"brightRed": "#EF2929",
86+
"brightWhite": "#EEEEEE",
87+
"brightYellow": "#FCE94F",
88+
"cyan": "#06989A",
89+
"foreground": "#EEEEEE",
90+
"green": "#4E9A06",
91+
"name": "UbuntuLegit",
92+
"purple": "#75507B",
93+
"red": "#CC0000",
94+
"white": "#D3D7CF",
95+
"yellow": "#C4A000"
96+
}
97+
98+
],
99+
100+
// Add any keybinding overrides to this array.
101+
// To unbind a default keybinding, set the command to "unbound"
102+
"keybindings": []
103+
}

0 commit comments

Comments
 (0)