Files
random-stuff/dotfiles/wezterm.lua
T

33 lines
529 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"}},
}
config.front_end = "OpenGL"
return config