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