Last active
March 13, 2020 06:21
-
-
Save barelyhuman/cab9d7598b3251d3aee04201cb1c137a to your computer and use it in GitHub Desktop.
My VSCode Setup
This file contains 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.fontFamily": "'Ubuntu Mono','Liga Ubuntu Mono'", | |
"editor.fontSize": 16, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.trimAutoWhitespace": true, | |
"files.insertFinalNewline": true, | |
"workbench.colorTheme": "Material Theme Darker", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#AB47BC", | |
"list.activeSelectionForeground": "#AB47BC", | |
"list.inactiveSelectionForeground": "#AB47BC", | |
"list.highlightForeground": "#AB47BC", | |
"scrollbarSlider.activeBackground": "#AB47BC50", | |
"editorSuggestWidget.highlightForeground": "#AB47BC", | |
"textLink.foreground": "#AB47BC", | |
"progressBar.background": "#AB47BC", | |
"pickerGroup.foreground": "#AB47BC", | |
"tab.activeBorder": "#AB47BC", | |
"notificationLink.foreground": "#AB47BC", | |
"editorWidget.resizeBorder": "#AB47BC", | |
"editorWidget.border": "#AB47BC", | |
"settings.modifiedItemForeground": "#E57373", | |
"panelTitle.activeBorder": "#AB47BC", | |
"activityBar.activeBorder": "#AB47BC", | |
"settings.modifiedItemIndicator": "#AB47BC", | |
"settings.headerForeground": "#AB47BC", | |
"breadcrumb.activeSelectionForeground": "#AB47BC", | |
"menu.selectionForeground": "#AB47BC", | |
"menubar.selectionForeground": "#AB47BC", | |
"editor.findMatchBorder": "#AB47BC", | |
"selection.background": "#AB47BC40" | |
}, | |
"materialTheme.accent": "Purple", | |
"editor.fontLigatures": true, | |
"emmet.triggerExpansionOnTab": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"terminal.integrated.fontFamily": "monospace", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"storage.type.function.js", | |
"entity.name.type.class", | |
"keyword", | |
"constant", | |
"storage.modifier", | |
"storage.type.class.js", | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"git.confirmSync": false, | |
"workbench.editor.limit.enabled": true, | |
"workbench.editor.limit.value": 3, | |
"[json]": {}, | |
"[javascript]": {}, | |
"window.zoomLevel": 0, | |
"typescript.preferences.quoteStyle": "single", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
"source.fixAll.tslint": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment