-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsettings.json
78 lines (76 loc) · 3.64 KB
/
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
// vim: ft=jsonc:
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
//
// This file resides at "%LocalAppData%\Microsoft\Windows Terminal". Sync with the
// commands below:
// cp ~/.dotfiles/settings.json /mnt/c/Users/simna/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/settings.json
// cp /mnt/c/Users/simna/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/settings.json ~/.dotfiles/settings.json
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{a5a97cb8-8961-5535-816d-772efe0c6a3f}",
"profiles": {
"defaults": {
"font": {
"face": "CaskaydiaCove NF",
"size": 14
}
},
"list": [
{
"guid": "{a5a97cb8-8961-5535-816d-772efe0c6a3f}",
"bellStyle": "window",
"hidden": false,
"name": "Arch",
"icon": "ms-appdata:///roaming/arch.png",
"source": "Windows.Terminal.Wsl",
"cursorShape": "filledBox",
"startingDirectory": "\\\\wsl$\\Arch\\home\\simnalamburt"
},
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"colorScheme": "Campbell Powershell",
"cursorShape": "filledBox",
"hidden": false
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"cursorShape": "filledBox",
"hidden": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"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"
"actions": [
{ "command": "unbound", "keys": "alt+left" },
{ "command": "unbound", "keys": "alt+right" },
{ "command": "unbound", "keys": "ctrl+plus" },
{ "command": { "action": "adjustFontSize", "delta": -1 }, "keys": "ctrl+shift+minus" },
{ "command": { "action": "adjustFontSize", "delta": 1 }, "keys": "ctrl+shift+plus" },
{ "command": { "action": "moveFocus", "direction": "left" }, "keys": "alt+[" },
{ "command": { "action": "moveFocus", "direction": "right" }, "keys": "alt+]" },
{ "command": { "action": "splitPane", "split": "down" }, "keys": "ctrl+minus" },
{ "command": { "action": "splitPane", "split": "right" }, "keys": "ctrl+\\" },
{ "command": { "action": "switchToTab", "index": 0 }, "keys": "ctrl+1" },
{ "command": { "action": "switchToTab", "index": 1 }, "keys": "ctrl+2" },
{ "command": { "action": "switchToTab", "index": 2 }, "keys": "ctrl+3" },
{ "command": { "action": "switchToTab", "index": 3 }, "keys": "ctrl+4" },
{ "command": { "action": "switchToTab", "index": 4 }, "keys": "ctrl+5" },
{ "command": { "action": "switchToTab", "index": 5 }, "keys": "ctrl+6" },
{ "command": { "action": "switchToTab", "index": 6 }, "keys": "ctrl+7" },
{ "command": { "action": "switchToTab", "index": 7 }, "keys": "ctrl+8" },
{ "command": { "action": "switchToTab", "index": 8 }, "keys": "ctrl+9" }
]
}