dotfiles/data/wezterm/wezterm.lua

30 lines
606 B
Lua

local wezterm = require("wezterm")
return {
font = wezterm.font_with_fallback({
{
family = "mononoki",
harfbuzz_features = { "ss01" },
},
"JetBrains Mono",
}),
font_size = 16.0,
line_height = 1.2,
color_scheme = "Catppuccin Mocha",
keys = {
{
key = "LeftArrow",
mods = "CTRL|SHIFT",
action = wezterm.action.ActivateTabRelative(-1),
},
{
key = "RightArrow",
mods = "CTRL|SHIFT",
action = wezterm.action.ActivateTabRelative(1),
},
},
hide_tab_bar_if_only_one_tab = true,
tab_bar_at_bottom = true,
window_background_opacity = 0.9,
audible_bell = "Disabled",
}