Skip to content

Instantly share code, notes, and snippets.

@devreapr
Created July 22, 2018 08:44
Show Gist options
  • Save devreapr/29d23888651c4995124461a4d82a276e to your computer and use it in GitHub Desktop.
Save devreapr/29d23888651c4995124461a4d82a276e to your computer and use it in GitHub Desktop.
Code Setup
{
"editor.fontFamily": "'Ubuntu Mono','Liga Ubuntu Mono'",
"editor.fontSize": 18,
"workbench.colorTheme": "Material Theme Lighter",
"materialTheme.fixIconsRunning": false,
"workbench.iconTheme": "eq-material-theme-icons-light",
"workbench.colorCustomizations": {
"activityBarBadge.background": "#E57373",
"list.activeSelectionForeground": "#E57373",
"list.inactiveSelectionForeground": "#E57373",
"list.highlightForeground": "#E57373",
"scrollbarSlider.activeBackground": "#E5737350",
"editorSuggestWidget.highlightForeground": "#E57373",
"textLink.foreground": "#E57373",
"progressBar.background": "#E57373",
"pickerGroup.foreground": "#E57373",
"tab.activeBorder": "#E57373",
"notificationLink.foreground": "#E57373",
"editorWidget.resizeBorder": "#E57373",
"editorWidget.border": "#E57373",
"settings.modifiedItemForeground": "#E57373",
"panelTitle.activeBorder": "#E57373"
},
"materialTheme.accentPrevious": "Indigo",
"materialTheme.accent": "Red",
"editor.fontLigatures": true,
"emmet.triggerExpansionOnTab": true,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontFamily": "Fira Code",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"storage.type.function.js",
"entity.name.type.class",
"keyword",
"constant",
"storage.modifier",
"storage.type.class.js",
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment