1
0
Fork 0
linux-conf/fonts/CONF.md

31 lines
450 B
Markdown
Raw Normal View History

2021-07-02 16:10:31 +02:00
# Fonts
- Cascadia Code PL => IDE Best font with ligatures
- Delugia Complete => Cascadia Code PL + Nerd font (not work in few IDE)
# Configuration VSCode
```json
{
"editor.fontFamily": "'Cascadia Code PL', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
[...]
}
```
# Configuration Windows Terminal
```json
{
"profiles":
{
"defaults":
{
"fontFace": "Delugia Complete",
[...]
},
[...]
},
[...]
}
```