diff options
author | Stephen <927583+scribbles@users.noreply.github.com> | 2020-08-09 00:50:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 00:50:04 +0300 |
commit | d5d6ee11ff66a1126e74bab961bad07ba7d469f7 (patch) | |
tree | b93a624da5dff6eed48812e97328e8b0f0375f1c | |
parent | c48b81ecb7ebcfe87b40e8da2cae939b6795fc77 (diff) |
Add MesloLGS font config steps for Alacritty (#929)
* Add MesloLGS font config steps for Alacritty
* Adding Alacritty font config changes
Shortened steps and included official doc.
* Simplified and updated Alacritty font config steps
Required YAML included in full. Quotes added to font family due to space in family name. Unnecessary detail has been removed.
* Reduced the required Alacritty font config YAML
Removed additional styles from the "MesloLGS NF" family, they are implied and not necessary to include.
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -556,6 +556,13 @@ applications on your system. Configure your terminal to use this font: - **Guake**: Right Click on an open terminal and open *Preferences*. Under *Appearance* tab, uncheck *Use the system fixed width font* (if not already) and select `MesloLGS NF Regular`. Exit the Preferences dialog by clicking *Close*. +- **Alacritty**: Edit or create `~/.config/alacritty/alacritty.yml`. Append the `font` section below: + ```yaml + font: + normal: + family: "MesloLGS NF" + ``` + **IMPORTANT:** Run `p10k configure` after changing terminal font. The old `~/.p10k.zsh` may work incorrectly with the new font. |