diff --git a/wrappers/wezterm/config.lua b/wrappers/wezterm/config.lua index 410fea9..3bd77aa 100644 --- a/wrappers/wezterm/config.lua +++ b/wrappers/wezterm/config.lua @@ -1,10 +1,18 @@ local wezterm = require 'wezterm' -return { +local cfg = { color_scheme = 'Default Dark (base16)', enable_tab_bar = false, - window_decorations = 'RESIZE', font = wezterm.font('Iosevka Nerd Font'), - font_size = 14.0, + window_decorations = 'TITLE | RESIZE', + font_size = 10.5, native_macos_fullscreen_mode = true, + hide_mouse_cursor_when_typing = false, } + +if string.find(wezterm.target_triple, "darwin") then + cfg.font_size = 14.0 + cfg.window_decorations = 'RESIZE' +end + +return cfg