forked from dineshsalunke/wezterm-config
14 lines
178 B
Lua
14 lines
178 B
Lua
local M = {}
|
|
|
|
function M.options(config)
|
|
config.ssh_domains = {
|
|
{
|
|
name = "thob_alpha",
|
|
remote_address = "68.183.89.231",
|
|
multiplexing = "None",
|
|
},
|
|
}
|
|
end
|
|
|
|
return M
|