-- Pull in the wezterm API
local wezterm = require("wezterm")

local config = wezterm.config_builder()
config.default_prog = { "nu" }

config.color_scheme = "GruvboxDark"

config.font = wezterm.font("Iosevka")
config.font_size = 14
config.enable_scroll_bar = true

local act = wezterm.action
-- Saner shortcuts for ergol (and homerow)
config.keys = {
	{ key = "'", mods = "ALT|CTRL", action = act.SplitVertical({ domain = "CurrentPaneDomain" }) },
	{ key = "\\", mods = "ALT|CTRL", action = act.SplitHorizontal({ domain = "CurrentPaneDomain" }) },
	{ key = "w", mods = "ALT|CTRL", action = wezterm.action.CloseCurrentPane({ confirm = true }) },
}
return config