mirror of
https://github.com/osmarks/random-stuff
synced 2025-09-07 04:47:56 +00:00
21 lines
279 B
Lua
21 lines
279 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
local config = {}
|
|
|
|
config.ssh_domains = {
|
|
{
|
|
name = 'protagonism',
|
|
remote_address = 'protagonism'
|
|
},
|
|
}
|
|
config.unix_domains = {
|
|
{
|
|
name = 'unix',
|
|
}
|
|
}
|
|
|
|
config.font = wezterm.font "Fira Code"
|
|
config.font_size = 10
|
|
|
|
return config
|