Created
November 7, 2018 13:28
-
-
Save stphn/fa23deba06b6417a568f557f7d571411 to your computer and use it in GitHub Desktop.
Visual code studio settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.renderWhitespace": "all", | |
"eslint.autoFixOnSave": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"workbench.colorCustomizations": { | |
"tab.activeBorder": "#00E5E5", | |
"list.inactiveSelectionForeground": "#00E5E5", | |
"list.activeSelectionBackground": "#00a6a9" | |
}, | |
"workbench.iconTheme": "file-icons-colourless", | |
"workbench.colorTheme": "Dark Candy Retro", | |
"editor.fontFamily": "Operator Mono, Fira Code", | |
"editor.fontLigatures": true, | |
"vscode_custom_css.imports": [ | |
"file:///Users/stphn/.vscode/style.css" | |
], | |
"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" | |
} | |
} | |
] | |
}, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 20, | |
"blueprint.templatesPath": [ | |
"~/blueprint-templates" | |
], | |
"editor.minimap.enabled": false, | |
"breadcrumbs.enabled": true, | |
"editor.cursorStyle": "line-thin" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment