blob: 0597845086b19993a37e89de28d299f4e2e3b4ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.default_prog = { "zellij", "-l", "welcome" }
config.enable_tab_bar = false
config.color_scheme = "Everforest Dark Hard (Gogh)"
config.font = wezterm.font("Maple Mono NF")
config.font_size = 11
return config
|