docs(fonts): update font name

This commit is contained in:
Loc Nguyen 2023-06-19 19:51:30 +07:00 committed by GitHub
parent 28548d9f20
commit 007c567c08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ by modifying the Windows Terminal settings (default shortcut: `CTRL + SHIFT + ,`
{
"font":
{
"face": "MesloLGM NF"
"face": "MesloLGM Nerd Font"
}
}
}
@ -95,10 +95,10 @@ by modifying the Windows Terminal settings (default shortcut: `CTRL + SHIFT + ,`
When using Visual Studio Code, you will need to configure the integrated Terminal to make use of the Nerd Font as well. This can be done by changing the `Integrated: Font Family` value in the Terminal settings (default shortcut: `CTRL + ,` and search for `Integrated: Font Family` or via `Users` -> `Features` -> `Terminal`).
If you are using the JSON based settings, you will need to update the `terminal.integrated.fontFamily` value. Example in case of `MesloLGM NF` Nerd Font:
If you are using the JSON based settings, you will need to update the `terminal.integrated.fontFamily` value. Example in case of `MesloLGM Nerd Font` Nerd Font:
```json
"terminal.integrated.fontFamily": "MesloLGM NF"
"terminal.integrated.fontFamily": "MesloLGM Nerd Font"
```
</TabItem>