2019-12-30 07:41:08 +03:00
|
|
|
### Font Related Configuration
|
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
WezTerm bundles [JetBrains Mono](https://www.jetbrains.com/lp/mono/),
|
|
|
|
[PowerlineExtraSymbols](https://github.com/ryanoasis/powerline-extra-symbols) and
|
|
|
|
[Noto Color Emoji](https://www.google.com/get/noto/help/emoji/) fonts
|
|
|
|
and uses those for the default font configuration.
|
2019-12-30 07:41:08 +03:00
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
If you wish to use a different font face, then you can use
|
|
|
|
the [wezterm.font](lua/wezterm/font.md) function to specify it:
|
2020-04-07 02:32:16 +03:00
|
|
|
|
|
|
|
```lua
|
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
|
|
|
|
return {
|
2021-04-10 07:52:25 +03:00
|
|
|
font = wezterm.font("Fira Code"),
|
2020-04-07 02:32:16 +03:00
|
|
|
-- You can specify some parameters to influence the font selection;
|
|
|
|
-- for example, this selects a Bold, Italic font variant.
|
2021-04-10 07:52:25 +03:00
|
|
|
font = wezterm.font("JetBrains Mono", {weight="Bold", italic=true})
|
2020-04-07 02:32:16 +03:00
|
|
|
}
|
2020-01-26 23:06:15 +03:00
|
|
|
```
|
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
#### Fallback
|
2020-04-07 02:32:16 +03:00
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
WezTerm allows specifying an ordered list of fonts; when resolving
|
|
|
|
text into glyphs the first font in the list is consulted, and if the
|
|
|
|
glyph isn't present in that font, WezTerm proceeds to the next font
|
|
|
|
in the fallback list.
|
2020-04-07 02:32:16 +03:00
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
The default fallback includes the popular
|
|
|
|
[PowerlineExtraSymbols](https://github.com/ryanoasis/powerline-extra-symbols)
|
|
|
|
font, which means that you don't need to use specially patched fonts to use the
|
|
|
|
powerline glyphs.
|
2020-04-07 02:32:16 +03:00
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
You can specify your own fallback; that's useful if you've got a killer
|
|
|
|
monospace font, but it doesn't have glyphs for the asian script that you
|
|
|
|
sometimes work with:
|
2020-04-07 02:32:16 +03:00
|
|
|
|
|
|
|
```lua
|
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
return {
|
2021-04-10 07:52:25 +03:00
|
|
|
font = wezterm.font_with_fallback({
|
|
|
|
"Fira Code",
|
|
|
|
"DengXian",
|
|
|
|
}),
|
2020-04-07 02:32:16 +03:00
|
|
|
}
|
2019-12-30 07:41:08 +03:00
|
|
|
```
|
|
|
|
|
2021-04-10 07:52:25 +03:00
|
|
|
WezTerm will still append its default fallback to whatever list you specify,
|
|
|
|
so you needn't worry about replicating that list if you set your own fallback.
|
|
|
|
|
|
|
|
If none of the fonts in the fallback list (including WezTerm's default fallback
|
|
|
|
list) contain a given glyph, then wezterm will resolve the system fallback list
|
|
|
|
and try those fonts too. If a glyph cannot be resolved, wezterm will render a
|
|
|
|
special "Last Resort" glyph as a placeholder. You may notice the placeholder
|
|
|
|
appear momentarily and then refresh itself to the system fallback glyph on some
|
|
|
|
systems.
|
|
|
|
|
|
|
|
### Font Related Options
|
|
|
|
|
|
|
|
Additional options for configuring fonts can be found elsewhere in the docs:
|
|
|
|
|
|
|
|
* [bold_brightens_ansi_colors](lua/config/bold_brightens_ansi_colors.md) - whether bold text uses the bright ansi palette
|
|
|
|
* [dpi](lua/config/dpi.md) - override the DPI; potentially useful for X11 users with high-density displays if experiencing tiny or blurry fonts
|
|
|
|
* [font_dirs](lua/config/font_dirs.md) - look for fonts in a set of directories
|
|
|
|
* [font_locator](lua/config/font_locator.md) - override the system font resolver
|
|
|
|
* [font_rules](lua/config/font_rules.md) - advanced control over which fonts are used for italic, bold and other textual styles
|
|
|
|
* [font_shaper](lua/config/font_shaper.md) - affects kerning and ligatures
|
|
|
|
* [font_size](lua/config/font_size.md) - change the size of the text
|
|
|
|
* [freetype_load_flags](lua/config/freetype_load_flags.md) - advanced hinting configuration
|
|
|
|
* [freetype_load_target](lua/config/freetype_load_target.md) - configure hinting and anti-aliasing
|
|
|
|
* [freetype_render_target](lua/config/freetype_render_target.md) - configure anti-aliasing
|
|
|
|
* [line_height](lua/config/line_height.md) - scale the font-specified line height
|
|
|
|
* [wezterm.font](lua/wezterm/font.md) - select a font based on family and style attributes
|
|
|
|
* [wezterm.font_with_fallback](lua/wezterm/font_with_fallback.md) - select a font from a list of candidates
|
2022-01-09 21:39:43 +03:00
|
|
|
|
|
|
|
## Troubleshooting Fonts
|
|
|
|
|
|
|
|
You may use `wezterm ls-fonts` to have wezterm explain information about which font files it will use for the different text styles.
|
|
|
|
|
|
|
|
It shows output like this:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ wezterm ls-fonts
|
|
|
|
Primary font:
|
|
|
|
wezterm.font_with_fallback({
|
|
|
|
-- /home/wez/.fonts/OperatorMonoSSmLig-Medium.otf, FontDirs
|
|
|
|
{family="Operator Mono SSm Lig", weight="DemiLight"},
|
|
|
|
|
|
|
|
-- /home/wez/.fonts/MaterialDesignIconsDesktop.ttf, FontDirs
|
|
|
|
"Material Design Icons Desktop",
|
|
|
|
|
|
|
|
-- /usr/share/fonts/jetbrains-mono-fonts/JetBrainsMono-Regular.ttf, FontConfig
|
|
|
|
"JetBrains Mono",
|
|
|
|
|
|
|
|
-- /usr/share/fonts/google-noto-emoji/NotoColorEmoji.ttf, FontConfig
|
|
|
|
-- Assumed to have Emoji Presentation
|
|
|
|
-- Pixel sizes: [128]
|
|
|
|
"Noto Color Emoji",
|
|
|
|
|
|
|
|
-- <built-in>, BuiltIn
|
|
|
|
"Last Resort High-Efficiency",
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
When Intensity=Half Italic=true:
|
|
|
|
wezterm.font_with_fallback({
|
|
|
|
-- /home/wez/.fonts/OperatorMonoSSmLig-BookItalic.otf, FontDirs
|
|
|
|
{family="Operator Mono SSm Lig", weight=325, italic=true},
|
|
|
|
|
|
|
|
-- /home/wez/.fonts/MaterialDesignIconsDesktop.ttf, FontDirs
|
|
|
|
"Material Design Icons Desktop",
|
|
|
|
|
|
|
|
-- /usr/share/fonts/jetbrains-mono-fonts/JetBrainsMono-Regular.ttf, FontConfig
|
|
|
|
"JetBrains Mono",
|
|
|
|
|
|
|
|
-- /usr/share/fonts/google-noto-emoji/NotoColorEmoji.ttf, FontConfig
|
|
|
|
-- Assumed to have Emoji Presentation
|
|
|
|
-- Pixel sizes: [128]
|
|
|
|
"Noto Color Emoji",
|
|
|
|
|
|
|
|
-- <built-in>, BuiltIn
|
|
|
|
"Last Resort High-Efficiency",
|
|
|
|
|
|
|
|
})
|
|
|
|
...
|
|
|
|
```
|
|
|
|
|
|
|
|
You can ask wezterm to including a listing of all of the fonts on the system in a form that can be copied and pasted into the configuration file:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ wezterm ls-fonts
|
|
|
|
<same output as above, but then:>
|
|
|
|
112 fonts found in your font_dirs + built-in fonts:
|
|
|
|
wezterm.font("Cascadia Code", {weight="ExtraLight", stretch="Normal", italic=false}) -- /home/wez/.fonts/CascadiaCode.ttf index=0 variation=1, FontDirs
|
|
|
|
wezterm.font("Cascadia Code", {weight="Light", stretch="Normal", italic=false}) -- /home/wez/.fonts/CascadiaCode.ttf index=0 variation=2, FontDirs
|
|
|
|
wezterm.font("Cascadia Code", {weight="DemiLight", stretch="Normal", italic=false}) -- /home/wez/.fonts/CascadiaCode.ttf index=0 variation=3, FontDirs
|
|
|
|
wezterm.font("Cascadia Code", {weight="Regular", stretch="Normal", italic=false}) -- /home/wez/.fonts/CascadiaCode.ttf index=0 variation=4, FontDirs
|
|
|
|
wezterm.font("Cascadia Code", {weight="DemiBold", stretch="Normal", italic=false}) -- /home/wez/.fonts/CascadiaCode.ttf index=0 variation=5, FontDirs
|
|
|
|
wezterm.font("Cascadia Code", {weight="Bold", stretch="Normal", italic=false}) -- /home/wez/.fonts/CascadiaCode.ttf index=0 variation=6, FontDirs
|
|
|
|
wezterm.font("Fira Code", {weight="Light", stretch="Normal", italic=false}) -- /home/wez/.fonts/FiraCode-Light.otf, FontDirs
|
|
|
|
wezterm.font("Fira Code", {weight="Regular", stretch="Normal", italic=false}) -- /home/wez/.fonts/FiraCode-Regular.otf, FontDirs
|
|
|
|
wezterm.font("Fira Code", {weight=450, stretch="Normal", italic=false}) -- /home/wez/.fonts/FiraCode-Retina.otf, FontDirs
|
|
|
|
wezterm.font("Fira Code", {weight="Medium", stretch="Normal", italic=false}) -- /home/wez/.fonts/FiraCode-Medium.otf, FontDirs
|
|
|
|
wezterm.font("Fira Code", {weight="Bold", stretch="Normal", italic=false}) -- /home/wez/.fonts/FiraCode-Bold.otf, FontDirs
|
|
|
|
wezterm.font("Font Awesome 5 Free", {weight="Black", stretch="Normal", italic=false}) -- /home/wez/.fonts/Font Awesome 5 Free-Solid-900.otf, FontDirs
|
|
|
|
...
|
|
|
|
690 system fonts found using FontConfig:
|
|
|
|
wezterm.font("Abyssinica SIL", {weight="Regular", stretch="Normal", italic=false}) -- /usr/share/fonts/sil-abyssinica-fonts/AbyssinicaSIL-R.ttf, FontConfig
|
|
|
|
wezterm.font("C059", {weight="Regular", stretch="Normal", italic=false}) -- /usr/share/fonts/urw-base35/C059-Bold.t1, FontConfig
|
|
|
|
wezterm.font("C059", {weight="Regular", stretch="Normal", italic=false}) -- /usr/share/fonts/urw-base35/C059-Roman.otf, FontConfig
|
|
|
|
wezterm.font("C059", {weight="Regular", stretch="Normal", italic=false}) -- /usr/share/fonts/urw-base35/C059-Roman.t1, FontConfig
|
|
|
|
wezterm.font("C059", {weight="Regular", stretch="Normal", italic=true}) -- /usr/share/fonts/urw-base35/C059-BdIta.t1, FontConfig
|
|
|
|
wezterm.font("C059", {weight="Regular", stretch="Normal", italic=true}) -- /usr/share/fonts/urw-base35/C059-Italic.otf, FontConfig
|
|
|
|
...
|
|
|
|
```
|
|
|
|
|
|
|
|
You may also display the shaping plan for a given text string; in this example,
|
|
|
|
the `a` and the `b` are separated by a special symbol which is not present in
|
|
|
|
the main font, so we expect to see a different font used for that glyph:
|
|
|
|
|
|
|
|
```
|
|
|
|
wezterm ls-fonts --text a🞄b
|
|
|
|
a \u{61} x_adv=8 glyph=29 wezterm.font("Operator Mono SSm Lig", {weight="DemiLight", stretch="Normal", italic=false})
|
|
|
|
/home/wez/.fonts/OperatorMonoSSmLig-Medium.otf, FontDirs
|
|
|
|
🞄 \u{1f784} x_adv=4 glyph=9129 wezterm.font("Symbola", {weight="Regular", stretch="SemiCondensed", italic=false})
|
|
|
|
/usr/share/fonts/gdouros-symbola/Symbola.ttf, FontConfig
|
|
|
|
b \u{62} x_adv=8 glyph=30 wezterm.font("Operator Mono SSm Lig", {weight="DemiLight", stretch="Normal", italic=false})
|
|
|
|
/home/wez/.fonts/OperatorMonoSSmLig-Medium.otf, FontDirs
|
|
|
|
```
|