Update .wezterm.lua

This commit is contained in:
Devin Haska 2025-05-27 12:20:44 -07:00
parent 36048c8f91
commit 238221e3c6

View file

@ -7,7 +7,7 @@ config.audible_bell = 'Disabled'
config.color_scheme = 'tokyonight_storm'
config.font = wezterm.font('OperatorMono Nerd Font', { weight = 400 })
config.font_size = 19
config.font_size = 20
config.font_rules = {
{
intensity = 'Bold',
@ -21,13 +21,21 @@ config.font_rules = {
}
}
config.hide_tab_bar_if_only_one_tab = true
config.line_height = 1.25
config.window_background_opacity = 0.95
config.window_decorations = "RESIZE"
config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0
left = 8,
right = 8,
top = 8,
bottom = 8,
}
-- OS Specific
config.macos_window_background_blur = 32
return config