-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwindows-terminal-config.json
76 lines (76 loc) · 2.2 KB
/
windows-terminal-config.json
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
// 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": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"showTerminalTitleInTitlebar": false,
"tabWidthMode": "titleLength",
"initialCols": 115,
"initialRows": 26,
"copyOnSelect": true,
"profiles": [
{
"name": "Ubuntu",
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"source": "Windows.Terminal.Wsl",
"hidden": false,
"tabTitle": "Ubuntu",
"suppressApplicationTitle": true,
"fontFace": "Fira Code",
"fontSize": 12,
"useAcrylic": false,
"colorScheme": "Dracula",
"cursorShape": "filledBox",
"cursorColor": "#ee4d02",
"padding": "15, 15, 15, 15",
"snapOnInput": true,
"icon": "C:/Users/Adrian/ubuntu-ico.ico",
"startingDirectory": "//wsl$/Ubuntu-18.04/home/adrian/"
},
{
"name": "Windows PowerShell",
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"commandline": "powershell.exe",
"hidden": false
},
{
"name": "cmd",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"commandline": "cmd.exe",
"hidden": true
},
{
"name": "Azure Cloud Shell",
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"source": "Windows.Terminal.Azure",
"hidden": true
}
],
// Add custom color schemes to this array
"schemes": [
{
"name": "Dracula",
"background": "#272935",
"black": "#272935",
"blue": "#BD93F9",
"brightBlack": "#555555",
"brightBlue": "#BD93F9",
"brightCyan": "#8BE9FD",
"brightGreen": "#50FA7B",
"brightPurple": "#FF79C6",
"brightRed": "#FF5555",
"brightWhite": "#FFFFFF",
"brightYellow": "#F1FA8C",
"cyan": "#6272A4",
"foreground": "#F8F8F2",
"green": "#50FA7B",
"purple": "#6272A4",
"red": "#FF5555",
"white": "#F8F8F2",
"yellow": "#FFB86C"
}
],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}