dotfiles-mirror/.wezterm.lua

23 lines
403 B
Lua
Raw Normal View History

2025-10-26 23:13:27 +03:30
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.initial_cols = 120
config.initial_rows = 28
config.font_size = 12
config.font = wezterm.font("MapleMono")
config.window_close_confirmation = 'NeverPrompt'
config.enable_tab_bar = false
2025-10-27 11:07:17 +03:30
config.window_background_opacity = 0.8
2025-10-26 23:13:27 +03:30
config.window_padding = {
left = 5,
right = 5,
top = 5,
bottom = 5,
}
return config