Skip to content

Instantly share code, notes, and snippets.

@isaqueprofeta
Last active April 17, 2020 03:25
Show Gist options
  • Save isaqueprofeta/41f1e0ff5a8386fcab62142ce8aef918 to your computer and use it in GitHub Desktop.
Save isaqueprofeta/41f1e0ff5a8386fcab62142ce8aef918 to your computer and use it in GitHub Desktop.
My theme with cursive font setup in vscode for python
# For Ubuntu 18.04
# If you dont have one, create personal font dir
mkdir ~/.fonts
# Clone FiraCodeiScript
git clone https://github.com/kencrocken/FiraCodeiScript.git /tmp/FiraCodeiScript
mv /tmp/FiraCodeiScript/*.ttf ~/.fonts
# Rebuild font cache
fc-cache -f -v
{
"editor.fontFamily": "Fira Code iScript",
"workbench.iconTheme": "eq-material-theme-icons-darker",
"workbench.colorTheme": "Material Theme Darker High Contrast",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"meta.class",
"keyword",
"storage",
"keyword.control"
],
"settings": {
"fontStyle": "italic"
}
}
]
}
}
@isaqueprofeta
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment