Skip to content

Instantly share code, notes, and snippets.

@tozbey
Created June 30, 2020 13:50
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 tozbey/ade2544ea1badf1986ccf99b85feb1b6 to your computer and use it in GitHub Desktop.
Save tozbey/ade2544ea1badf1986ccf99b85feb1b6 to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.letterSpacing": 0.2,
"editor.fontFamily": "Source Code Pro",
"editor.fontLigatures": true,
"workbench.iconTheme": "vs-seti",
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"tab.inactiveBackground": "#31353d",
"tab.activeBackground": "#282C34",
"tab.border": "#31353D",
"activityBar.background": "#282C34",
"editorGroup.emptyBackground": "#282C34",
"sideBar.background": "#31353d",
"editorGroupHeader.tabsBackground": "#31353D"
},
"workbench.activityBar.visible": true,
//"workbench.editor.enablePreview": false,
//"editor.renderWhitespace": "all",
"editor.formatOnPaste": true,
//"editor.formatOnSave": true,
"workbench.editor.highlightModifiedTabs": true,
//"editor.mouseWheelZoom": true,
"editor.renderControlCharacters": true,
"editor.wordWrap": "on",
"editor.tabSize": 2,
"liveServer.settings.CustomBrowser": "chrome",
"window.zoomLevel": 0,
"workbench.colorTheme": "Atom One Dark",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"comment.line.double-slash",
"punctuation.definition.comment",
],
"settings": {
//"foreground": "#676767",
"fontStyle": "italic"
}
},
{
"scope": [
"string",
],
"settings": {
"foreground": "#86BB62",
//"fontStyle": "italic"
}
},
{
"scope": [
"entity.name.type.class", //class names
"entity.other.attribute-name"
],
"settings": {
//"foreground": "#fff",
"fontStyle": "italic"
}
},
{
"scope": [
"entity.name.tag",
],
"settings": {
//"foreground": "#fff",
//"fontStyle": "italic"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment