Files
dots/configs/wezterm_g/win/.wezterm.lua
2025-03-08 00:00:52 -08:00

22 lines
433 B
Lua
Executable File

local wezterm = require 'wezterm'
local config = {}
config.color_scheme = 'GruvboxDark'
config.font = wezterm.font 'ComicShannsMono Nerd Font Mono'
config.font_size = 16
config.enable_tab_bar = false
config.window_close_confirmation = "NeverPrompt"
config.default_domain = 'WSL:Arch'
config.audible_bell = 'Disabled'
-- Window padding
config.window_padding = {
left = 24,
right = 24,
top = 8,
bottom = 8,
}
return config