mirror of
https://github.com/osmarks/random-stuff
synced 2025-12-24 22:46:06 +00:00
27 lines
406 B
Lua
27 lines
406 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
local config = {}
|
|
|
|
config.ssh_domains = {
|
|
{
|
|
name = 'straylight',
|
|
remote_address = 'straylight'
|
|
},
|
|
}
|
|
config.unix_domains = {
|
|
{
|
|
name = 'unix',
|
|
}
|
|
}
|
|
|
|
config.font = wezterm.font "Fira Code"
|
|
config.font_size = 10
|
|
config.font_rules = {
|
|
{
|
|
intensity = "Half",
|
|
font = wezterm.font("Fira Code", { weight = "Regular" })
|
|
}
|
|
}
|
|
|
|
return config
|