blob: 904c9a83ad5d6829fc2e04633d7697560aba5f9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
local wezterm = require 'wezterm'
return {
font = wezterm.font 'JetBrains Mono',
--font = wezterm.font_with_fallback {
--},
--font = wezterm.font 'Fira Code',
-- You can specify some parameters to influence the font selection;
-- for example, this selects a Bold, Italic font variant.
--font = wezterm.font('JetBrains Mono', { weight = 'Bold', italic = true }),
color_scheme = 'transparent',
}
|