mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
22 lines
403 B
Lua
22 lines
403 B
Lua
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
|
|
|
|
config.window_background_opacity = 0.8
|
|
|
|
config.window_padding = {
|
|
left = 5,
|
|
right = 5,
|
|
top = 5,
|
|
bottom = 5,
|
|
}
|
|
|
|
return config
|