15 lines
647 B
Lua
15 lines
647 B
Lua
local wezterm = require('wezterm')
|
|
|
|
return {
|
|
font = wezterm.font_with_fallback({
|
|
{ family = 'CaskaydiaMono Nerd Font Mono', weight = 'Regular' },
|
|
{ family = 'FiraCode Nerd Font', weight= 'Regular' },
|
|
{ family = 'JetBrainsMono Nerd Font', weight = 'Regular' },
|
|
}),
|
|
font_size = 16,
|
|
|
|
--ref: https://wezfurlong.org/wezterm/config/lua/config/freetype_pcf_long_family_names.html#why-doesnt-wezterm-use-the-distro-freetype-or-match-its-configuration
|
|
freetype_load_target = 'Normal', ---@type 'Normal'|'Light'|'Mono'|'HorizontalLcd'
|
|
freetype_render_target = 'Normal', ---@type 'Normal'|'Light'|'Mono'|'HorizontalLcd'
|
|
}
|