Skip to content

Instantly share code, notes, and snippets.

@dhigginbotham
Created September 13, 2017 20:07
Show Gist options
  • Save dhigginbotham/d0ab573f44da37d74ced1f33a751e192 to your computer and use it in GitHub Desktop.
Save dhigginbotham/d0ab573f44da37d74ced1f33a751e192 to your computer and use it in GitHub Desktop.
{
"editor.tabSize": 2,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.cursorStyle": "line",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Comments",
"scope": [
"comment.block.documentation",
"comment.block"
],
"settings": {
"foreground": "#ABB2BF"
}
},
{
"name": "LineComments",
"scope": [
"comment.line",
"punctuation.definition.comment"
],
"settings": {
"foreground": "#5f6b85"
}
}
]
},
"workbench.colorCustomizations":{
"editorCursor.foreground": "#c678dd",
"peekView.border": "#E50A69AB",
"peekViewTitle.background": "#101119",
"peekViewResult.background": "#101119",
"peekViewEditor.background": "#202232",
"peekViewEditor.matchHighlightBackground": "#314365"
},
"workbench.colorTheme": "One Dark Rain Coat",
"files.associations": {
"*.jsx": "javascript",
"*.mjs": "javascript"
},
"window.zoomLevel": 0,
"emmet.triggerExpansionOnTab": true,
"editor.formatOnSave": false,
// "eslint.run": "onSave",
"git.confirmSync": false,
"git.enableSmartCommit": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment