From bb0d56e4033a6f7b5a4fbd7ebdd977511dd74ff5 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 14 Jan 2025 06:59:00 +0200 Subject: [PATCH] chore(config): wezterm config tweaks --- config/wezterm/wezterm.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config/wezterm/wezterm.lua b/config/wezterm/wezterm.lua index fd2fdd8..24237eb 100644 --- a/config/wezterm/wezterm.lua +++ b/config/wezterm/wezterm.lua @@ -4,18 +4,19 @@ local config = wezterm.config_builder() -- Font and font size config.font_size = 14.0 config.font = wezterm.font_with_fallback { - 'JetBrainsMonoNL Nerd Font Mono', + 'JetBrainsMonoNL NFM Light', 'JetBrains Mono', - 'Noto Color Emoji', 'Symbols Nerd Font Mono', } +config.harfbuzz_features = { 'zero', 'ss01', 'cv05' } -- Make the window a bit transparent -config.window_background_opacity = 0.97 +config.window_background_opacity = 0.98 -- Don't show tab bar config.enable_tab_bar = false +-- Fix alt on macOS config.send_composed_key_when_left_alt_is_pressed = true -- Function to detect the theme based on appearance