1
0
mirror of https://github.com/osmarks/random-stuff synced 2026-04-16 13:31:23 +00:00
Files
random-stuff/dotfiles/wezterm.lua
2026-04-09 17:26:03 +01:00

31 lines
500 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" })
}
}
config.keys = {
{key="Enter", mods="SHIFT", action=wezterm.action{SendString="\x1b\r"}},
}
return config