🗛 Tweak Settings
Customize your theme and add font ligatures
Tasks
- Customize your color theme like Atom One Dark
- Update your Icon Theme with VSCode-icons
- Add a custom font like Fira Code
✨ Trick - Ligatures
Font ligatures are special symbols that combine multiple characters into a single symbol and arguably make your code more readable. Enable ligatures in VS Code by adding the following changes to your settings (note: you must install Fira Code font on your machine).
settings.json
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true
}