27 lines
446 B
Lua
27 lines
446 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
local config = {}
|
|
|
|
if wezterm.config_builder then
|
|
config = wezterm.config_builder()
|
|
end
|
|
|
|
config.font = wezterm.font_with_fallback {
|
|
'ComicShannsMono Nerd Font',
|
|
'Iosevka Term'
|
|
}
|
|
config.font_size = 20.0
|
|
|
|
config.enable_scroll_bar = false
|
|
config.window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 0,
|
|
bottom = 0,
|
|
}
|
|
|
|
config.tab_bar_at_bottom = true
|
|
config.freetype_load_target = "HorizontalLcd"
|
|
|
|
return config
|