Last active
February 7, 2021 11:43
-
-
Save devethan/d49f1a5f5215c49b39ae7095ccb62d45 to your computer and use it in GitHub Desktop.
vscode settings.json with slack theme
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
{ | |
"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