mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
24 lines
453 B
Lua
24 lines
453 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.9
|
|
|
|
config.window_padding = {
|
|
left = 5,
|
|
right = 5,
|
|
top = 5,
|
|
bottom = 5,
|
|
}
|
|
|
|
config.color_scheme = 'Atelier Plateau (base16)'
|
|
|
|
return config
|