forked from KevinSilvester/wezterm-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomains.lua
28 lines (26 loc) · 781 Bytes
/
domains.lua
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
return {
-- ref: https://wezfurlong.org/wezterm/config/lua/SshDomain.html
-- ssh_domains = {},
ssh_domains = {
-- yazi's image preview on Windows will only work if launched via ssh from WSL
{
name = 'wsl.ssh',
remote_address = 'localhost',
multiplexing = 'None',
default_prog = { 'fish', '-l' },
assume_shell = 'Posix'
}
},
-- ref: https://wezfurlong.org/wezterm/multiplexing.html#unix-domains
unix_domains = {},
-- ref: https://wezfurlong.org/wezterm/config/lua/WslDomain.html
wsl_domains = {
{
name = 'WSL:Ubuntu',
distribution = 'Ubuntu',
username = 'kevin',
default_cwd = '/home/kevin',
default_prog = { 'fish', '-l' },
},
},
}