fix(wezterm): adjust font size and window padding

Reduce font size from 16 to 12, increase window padding from 5 to 10.
This commit is contained in:
2026-02-28 10:36:58 +02:00
parent b956119b98
commit 28c8332058

View File

@@ -10,7 +10,7 @@ config.color_scheme_dirs = {
}
-- Font and font size
config.font_size = 16
config.font_size = 12
config.font = wezterm.font_with_fallback {
{
family = 'Monaspace Argon NF',
@@ -48,9 +48,9 @@ config.window_background_opacity = 0.97
config.window_decorations = 'RESIZE'
config.macos_window_background_blur = 10
config.window_padding = {
left = 5,
right = 5,
top = 5,
left = 10,
right = 10,
top = 10,
bottom = 5,
}