diff options
author | phwt <28344318+phwt@users.noreply.github.com> | 2022-08-30 08:44:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 08:44:44 +0300 |
commit | 5d223b8351708685b8dd88b3e3556cbff4b95c1e (patch) | |
tree | 718688ab973aacaf32174114534d3c06bed7a934 /README.md | |
parent | 0493886837595bdfb0d8ee36a8b25556ac0a64ea (diff) |
docs: update Windows Terminal font configuration
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -647,11 +647,21 @@ If you are using a different terminal, proceed with manual font installation. *Custom font* under *Text Appearance* and select `MesloLGS NF Regular`. - **Windows Console Host** (the old thing): Click the icon in the top left corner, then *Properties → Font* and set *Font* to `MesloLGS NF`. - - **Windows Terminal** by Microsoft (the new thing): Open `settings.json` (<kbd>Ctrl+Shift+,</kbd>), - search for `fontFace` and set the value to `MesloLGS NF` for every profile. If you don't find - `fontFace`, add it under *profiles → defaults*. See [this settings file]( - https://raw.githubusercontent.com/romkatv/dotfiles-public/aba0e6c4657d705ed6c344d700d659977385f25c/dotfiles/microsoft-terminal-settings.json) + - **Windows Terminal** by Microsoft (the new thing): Open `settings.json` (<kbd>Ctrl+,</kbd>), + search for `font.face` and set the value to `MesloLGS NF` for every profile. If you don't find + `font.face`, add it under *profiles → defaults*. See [this settings file]( + https://raw.githubusercontent.com/romkatv/dotfiles-public/1843af92dbd8f6297de195a469362760e1748f58/dotfiles/microsoft-terminal-settings.json) for example. + ```json + { + "profiles": { + "defaults": { + "font": { + "face": "MesloLGS NF" + } + } + } + ``` - **IntelliJ** (and other IDEs by Jet Brains): Open *IDE → Edit → Preferences → Editor → Color Scheme → Console Font*. Select *Use console font instead of the default* and set the font name to `MesloLGS NF`. |