2023-03-01 03:10:30 +00:00
|
|
|
local wezterm = require("wezterm")
|
|
|
|
return {
|
2023-03-15 06:16:48 +00:00
|
|
|
font = wezterm.font_with_fallback({
|
|
|
|
"Hermit",
|
|
|
|
-- {
|
|
|
|
-- family = "mononoki",
|
|
|
|
-- harfbuzz_features = { "ss01" },
|
|
|
|
-- },
|
|
|
|
"JetBrains Mono",
|
2023-03-01 03:10:30 +00:00
|
|
|
}),
|
2023-03-15 06:16:48 +00:00
|
|
|
font_size = 14.0,
|
|
|
|
line_height = 1.2,
|
|
|
|
-- font_size = 16.0,
|
|
|
|
-- line_height = 1.4,
|
|
|
|
use_cap_height_to_scale_fallback_fonts = true,
|
2023-03-01 03:10:30 +00:00
|
|
|
color_scheme = "Catppuccin Mocha",
|
2023-03-01 05:31:19 +00:00
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
key = "LeftArrow",
|
|
|
|
mods = "CTRL|SHIFT",
|
|
|
|
action = wezterm.action.ActivateTabRelative(-1),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key = "RightArrow",
|
|
|
|
mods = "CTRL|SHIFT",
|
|
|
|
action = wezterm.action.ActivateTabRelative(1),
|
|
|
|
},
|
|
|
|
},
|
2023-03-01 03:10:30 +00:00
|
|
|
hide_tab_bar_if_only_one_tab = true,
|
|
|
|
tab_bar_at_bottom = true,
|
|
|
|
window_background_opacity = 0.9,
|
2023-03-04 17:25:40 +00:00
|
|
|
text_background_opacity = 0.8,
|
2023-03-28 16:21:40 +00:00
|
|
|
macos_window_background_blur = 20,
|
2023-03-01 10:36:31 +00:00
|
|
|
audible_bell = "Disabled",
|
2023-03-01 03:10:30 +00:00
|
|
|
}
|