Skip to content

Commit 8ea0607

Browse files
authored
Add instructions to set VSCode font family
1 parent 5475421 commit 8ea0607

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,17 @@ As with the desktop fonts, they are made available both as variable and static f
6060
## Editors
6161

6262
### Visual Studio Code
63+
Set the font family
64+
65+
```json
66+
"editor.fontFamily": "'Monaspace Neon Var', monospace",
67+
```
6368

6469
Texture healing and coding ligatures are controlled by the same setting. You can enable either, or both.
6570

6671
If you only want texture healing and basic coding ligatures, add the following line to your `settings.json`:
6772

68-
```
73+
```json
6974
"editor.fontLigatures": true,
7075
```
7176

@@ -74,15 +79,15 @@ If you only want texture healing and basic coding ligatures, add the following l
7479
7580
If you want more coding ligatures, you must customize that setting to specify all of the sets you want enabled:
7681

77-
```
82+
```json
7883
"editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss01', 'ss02', ... (more stylistic sets) ...",
7984
```
8085
> [!NOTE]
8186
> You must start the setting with `'calt', 'liga', 'dlig'`! The stylistic sets will not have any effect without enabling contextual alternates, ligatures, and discretionary ligatures.
8287
8388
If you want coding ligatures but do _not_ want texture healing, you can elide the `calt` setting:
8489

85-
```
90+
```json
8691
"editor.fontLigatures": "'liga', 'dlig', 'ss01', 'ss02', ... (more stylistic sets) ...",
8792
```
8893

0 commit comments

Comments
 (0)