16 lines
303 B
Lua
16 lines
303 B
Lua
local wezterm = require 'wezterm';
|
|
|
|
return {
|
|
color_scheme = "Dracula",
|
|
font = wezterm.font("FantasqueSansMono NF"),
|
|
font_size = 11,
|
|
hide_tab_bar_if_only_one_tab = true,
|
|
window_background_opacity = 0.88,
|
|
window_padding = {
|
|
left = 16,
|
|
right = 16,
|
|
top = 16,
|
|
bottom = 16,
|
|
},
|
|
}
|