Skip to content

Instantly share code, notes, and snippets.

@devethan
Last active February 7, 2021 11:43
Show Gist options
  • Save devethan/d49f1a5f5215c49b39ae7095ccb62d45 to your computer and use it in GitHub Desktop.
Save devethan/d49f1a5f5215c49b39ae7095ccb62d45 to your computer and use it in GitHub Desktop.
vscode settings.json with slack theme
{
"terminal.integrated.fontFamily": "D2Coding",
"terminal.integrated.fontSize": 14,
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.zoomLevel": 0,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorTheme": "Slack Theme Aubergine Dark",
"workbench.editor.showTabs": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"git.decorations.enabled": true,
"workbench.colorCustomizations": {
"gitDecoration.addedResourceForeground": "#2DB67E",
"gitDecoration.conflictingResourceForeground": "#DF1D5A",
"gitDecoration.modifiedResourceForeground": "#EBB22C",
"gitDecoration.untrackedResourceForeground": "#2DB67E",
"gitDecoration.ignoredResourceForeground": "#7A6C78",
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.iconTheme": "material-icon-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment