Skip to content

Instantly share code, notes, and snippets.

@jaywick
Last active May 15, 2018 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaywick/aaa6cae2994e1928e043bb95d349a832 to your computer and use it in GitHub Desktop.
Save jaywick/aaa6cae2994e1928e043bb95d349a832 to your computer and use it in GitHub Desktop.
/*
credit @mikewheaton's code plus some small tweaks
https://github.com/open-source-ideas/open-source-ideas/issues/10#issuecomment-272638529
*/
.mtki {
font-family: 'Ubuntu Mono' !important;
font-style: italic;
font-size: 1.2em; /* Lines up perfectly with Fira Code */
}
// install https://github.com/be5invis/vscode-custom-css
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"workbench.colorTheme": "Pure Code",
"editor.fontSize": 15,
"editor.lineHeight": 22,
"vscode_custom_css.imports": [
"file:///PATH_TO_YOUR_CUSTOM_CSS/custom-vscode.css"
],
"editor.tokenColorCustomizations": {
"[Pure Code]": {
"textMateRules": [
{
"scope": "keyword.control",
"settings": {
"fontStyle": ""
}
},
{
"scope": "keyword.operator",
"settings": {
"fontStyle": "",
}
},
{
"scope": "variable.parameter",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "entity.name.function",
"settings": {
"fontStyle": "italic",
"foreground": "#ececec"
}
}
,{
"scope": "string,punctuation.definition.string",
"settings": {
"foreground": "#e7b6d1"
}
},
{
"scope": "string.template",
"settings": {
"foreground": "#e9d7e1",
}
}
]
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment