updated wezterm lua for windows

This commit is contained in:
2025-03-13 22:41:26 -07:00
parent c9858f8bc8
commit d6d0c12c3f

View File

@@ -0,0 +1,24 @@
-- Pull in wezterm API
local wezterm = require("wezterm")
-- This will hold the configuration
local config = wezterm.config_builder()
config.font = wezterm.font("VictorMono Nerd Font")
config.font_size = 13
config.colors = {}
config.window_background_opacity = .85
config.macos_window_background_blur = 40
config.win32_system_backdrop = "Acrylic"
-- Add configration here
config.enable_tab_bar = true
config.hide_tab_bar_if_only_one_tab = true
config.use_fancy_tab_bar = true
config.window_decorations = "RESIZE"
config.default_prog = { 'pwsh' }
return config