Dot_Files/.config/wezterm/config/fonts.lua

28 lines
694 B
Lua
Raw Normal View History

2022-06-19 16:03:11 -05:00
local wezterm = require('wezterm')
return {
use_cap_height_to_scale_fallback_fonts = true,
font = wezterm.font_with_fallback({
{
2022-07-08 15:37:38 -05:00
family = 'JetBrainsMono NF',
weight = 'DemiBold',
},
2022-07-08 15:37:38 -05:00
-- NOTE: MesloLGS is included for symbols
{ family = 'MesloLGS NF', scale = 1.3 },
{ family = 'JetBrains Mono', weight = 'DemiBold' },
-- <built-in>, BuiltIn
-- Assumed to have Emoji Presentation
-- Pixel sizes: [128]
'Noto Color Emoji',
-- <built-in>, BuiltIn
'Symbols Nerd Font Mono',
-- <built-in>, BuiltIn
'Last Resort High-Efficiency',
2022-06-19 16:03:11 -05:00
}),
font_size = 14,
2022-06-19 16:03:11 -05:00
}