Skip to main content

WezTerm

้…็ฝฎโ€‹

local wezterm = require 'wezterm'
local mux = wezterm.mux

wezterm.on('gui-startup', function(cmd)
local tab, pane, window = mux.spawn_window(cmd or {})
window:gui_window():maximize()
end)

return {
default_cursor_style = 'BlinkingBlock',
window_decorations = "RESIZE",
window_close_confirmation = 'NeverPrompt',
color_scheme = "Monokai (base16)",
use_fancy_tab_bar = true,
tab_max_width = 16,
font_size = 13.0,
line_height = 1.3,
font = wezterm.font_with_fallback {
{ family = 'Liberation Mono', weight = 'Bold', italic = false },
{ family = 'PowerlineSymbols', weight = 'Bold', italic = false },
{ family = 'YaoSans', weight = 'Bold', italic = false }
},
}