mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 12:20:07 +00:00
Add font configuration instructions for WezTerm (#1313)
This commit is contained in:
parent
7d786b9c50
commit
58f5470cd9
1 changed files with 9 additions and 0 deletions
|
@ -582,6 +582,15 @@ applications on your system. Configure your terminal to use this font:
|
||||||
font_family MesloLGS NF
|
font_family MesloLGS NF
|
||||||
```
|
```
|
||||||
Restart Kitty by closing all sessions and opening a new session.
|
Restart Kitty by closing all sessions and opening a new session.
|
||||||
|
- **WezTerm**: Create or open `$HOME/.config/wezterm/wezterm.lua` and add the following:
|
||||||
|
```lua
|
||||||
|
local wezterm = require 'wezterm';
|
||||||
|
return {
|
||||||
|
font = wezterm.font("MesloLGS NF"),
|
||||||
|
}
|
||||||
|
```
|
||||||
|
If the file already exists, only add the line with the font to the existing return.
|
||||||
|
Also add the first line if it is not already present.
|
||||||
|
|
||||||
**IMPORTANT:** Run `p10k configure` after changing terminal font. The old `~/.p10k.zsh` may work
|
**IMPORTANT:** Run `p10k configure` after changing terminal font. The old `~/.p10k.zsh` may work
|
||||||
incorrectly with the new font.
|
incorrectly with the new font.
|
||||||
|
|
Loading…
Reference in a new issue