2026/1/2 .wezterm.lua ------------------------------ -- Pull in the wezterm API local wezterm = require("wezterm") -- This will hold the configuration. local config = wezterm.config_builder() -- This is where you actually apply your config choices. config.default_prog = { "pwsh.exe" } config.keys = { { key = "Q", mods = "CTRL|SHIFT", action = wezterm.action.CloseCurrentPane({ confirm = true }), }, } -- config.window_decorations = "RESIZE" -- config.enable_scroll_bar = true -- Finally, return the configuration to wezterm: return config ------------------------------