From 2329bd8ae1eb1cd9ec2574cf9c4db5a53bb6c0e8 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sat, 28 Sep 2024 11:00:47 +0700 Subject: [PATCH] config(wezterm): update window_padding for aesthetics --- data/wezterm/wezterm.lua | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/data/wezterm/wezterm.lua b/data/wezterm/wezterm.lua index e1844a5..814a935 100644 --- a/data/wezterm/wezterm.lua +++ b/data/wezterm/wezterm.lua @@ -37,6 +37,29 @@ return { color_scheme = current_color_scheme, + window_padding = { + left = 16, + right = 16, + top = 16, + bottom = 16, + }, + + use_fancy_tab_bar = false, + hide_tab_bar_if_only_one_tab = true, + tab_bar_at_bottom = true, + tab_and_split_indices_are_zero_based = true, + tab_max_width = 24, + + window_background_opacity = 0.95, + macos_window_background_blur = 32, + + native_macos_fullscreen_mode = true, + + default_cursor_style = current_font.default_cursor_style, + audible_bell = "Disabled", + + front_end = "WebGpu", + keys = { { key = "LeftArrow", @@ -75,20 +98,4 @@ return { action = act.ActivateTabRelative(1), }, }, - - use_fancy_tab_bar = false, - hide_tab_bar_if_only_one_tab = true, - tab_bar_at_bottom = true, - tab_and_split_indices_are_zero_based = true, - tab_max_width = 24, - - window_background_opacity = 0.95, - macos_window_background_blur = 32, - - native_macos_fullscreen_mode = true, - - default_cursor_style = current_font.default_cursor_style, - audible_bell = "Disabled", - - front_end = "WebGpu", }