-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindows_terminal_settings.json
executable file
·80 lines (75 loc) · 2.62 KB
/
windows_terminal_settings.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
77
78
79
80
// From C:\Users\pierr\AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json
// 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}",
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles
"bellStyle": "none"
},
"list":
[
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
"hidden": false,
"name": "Ubuntu-18.04",
"source": "Windows.Terminal.Wsl",
"colorScheme": "One Half Dark",
"startingDirectory": "//wsl$/Ubuntu-18.04/home/pierre/dev",
"fontSize": 11,
// "fontFace": "MesloLGS NF",
"padding": "12, 12, 12, 12"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
]
},
// Add custom color schemes to this array
"schemes": [{
"name": "Perso",
"foreground": "#ffffff",
"background": "#202024",
"black": "#000000",
"red": "#dd3535",
"green": "#66ee66",
"yellow": "#808000",
// "blue": "#000080",
"blue": "#0099ff",
"purple": "#ce56ce",
"cyan": "#008080",
"white": "#c0c0c0",
"brightBlack": "#808080",
"brightRed": "#ec4141",
"brightGreen": "#00ff00",
"brightYellow": "#ffff00",
"brightBlue": "#0000ff",
"brightPurple": "#ff00ff",
"brightCyan": "#00ffff",
"brightWhite": "#ffffff"
}],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}