Skip to content

Instantly share code, notes, and snippets.

@rogeercruz
Created December 24, 2018 03:46
Show Gist options
  • Save rogeercruz/e3956f3fb8e84d87ca2f3274963f64b1 to your computer and use it in GitHub Desktop.
Save rogeercruz/e3956f3fb8e84d87ca2f3274963f64b1 to your computer and use it in GitHub Desktop.
{
"editor.renderWhitespace": "all",
"editor.fontSize": 14,
"eslint.autoFixOnSave": true,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"prettier.singleQuote": true,
"editor.formatOnSave": true,
"workbench.colorCustomizations": {
"tab.activeBorder": "#00E5E5",
"list.inactiveSelectionForeground": "#00E5E5",
"list.activeSelectionBackground": "#00a6a9"
},
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dark Candy",
"editor.fontFamily": "Operator Mono, Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 20,
"editor.tabSize": 2,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "punctuation",
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": "storage.modifier",
"settings": {
"foreground": "#d0d0d0",
"fontStyle": "italic"
}
},
{
"scope": "punctuation.definition.comment",
"settings": {
"foreground": "#676767",
"fontStyle": "italic"
}
},
{
"scope": "punctuation.definition.tag.begin",
"settings": {
"foreground": "#d0d0d0"
}
},
{
"scope": "punctuation.definition.tag.end",
"settings": {
"foreground": "#d0d0d0"
}
},
{
"scope": "punctuation.definition.string.begin",
"settings": {
"foreground": "#f7bb9f"
}
},
{
"scope": "punctuation.definition.string.end",
"settings": {
"foreground": "#f7bb9f"
}
},
{
"scope": "variable.other.object",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "variable.other.property",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "variable.other.readwrite",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "meta.identifier",
"settings": {
"foreground": "#CE9178"
}
}
]
},
"git.enableSmartCommit": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment