Created
April 15, 2019 20:35
-
-
Save kovchiy/4e096e6168976460a02c80133c0503b4 to your computer and use it in GitHub Desktop.
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
{ | |
"window.nativeTabs": true, | |
"workbench.editor.tabCloseButton": "right", | |
"explorer.autoReveal": false, | |
"explorer.openEditors.visible": 0, | |
"workbench.colorTheme": "Visual Studio Light", | |
"workbench.iconTheme": null, | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": false, | |
"editor.renderLineHighlight": "none", | |
"editor.renderIndentGuides": false, | |
"workbench.statusBar.visible": true, | |
"editor.matchBrackets": false, | |
"editor.lightbulb.enabled": false, | |
"editor.occurrencesHighlight": false, | |
"workbench.activityBar.visible": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"files.exclude": { | |
// "node_modules": true, | |
"**/.*": true | |
}, | |
"files.associations": { | |
"*.bml": "javascriptreact", | |
"*.css": "postcss" | |
}, | |
"prettier.eslintIntegration": true, | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"editor.formatOnSave": true, | |
"explorer.decorations.colors": false, | |
"git.enabled": true, | |
"editor.fontFamily": "Liberation Mono", | |
"workbench.colorCustomizations": { | |
"list.hoverBackground": "#00000008", | |
"list.activeSelectionBackground": "#00000015", | |
"list.activeSelectionForeground": "#000", | |
"list.inactiveSelectionBackground": "#00000008", | |
"sideBar.background": "#f7f7f7", | |
"editorLineNumber.foreground": "#BBB", | |
"editorLineNumber.activeForeground": "#000", | |
"editorIndentGuide.background": "#efefef", | |
"statusBar.background": "#f7f7f7", | |
"statusBar.noFolderBackground": "#f7f7f7", | |
"statusBar.debuggingBackground": "#f7f7f7", | |
"statusBar.foreground": "#777", | |
"editor.lineHighlightBackground": "#cde3ff50", | |
"editorBracketMatch.border": "#ffffff00", | |
"editorBracketMatch.background": "#cde3ff", | |
"editor.findMatchBackground": "#cde3ff", | |
"editor.findMatchHighlightBackground": "#cde3ff50", | |
"editor.wordHighlightBackground": "#cde3ff50", | |
"editor.wordHighlightStrongBackground": "#cde3ff", | |
"sideBarSectionHeader.background": "#00000000", | |
"editorGutter.addedBackground": "#fff", | |
"editorGutter.deletedBackground": "#fff", | |
"editorGutter.modifiedBackground": "#fff", | |
"scrollbarSlider.background": "#00000015", | |
"scrollbarSlider.hoverBackground": "#00000025", | |
"scrollbar.shadow": "#ffffff00", | |
"widget.shadow": "#ffffff00" | |
}, | |
"editor.tokenColorCustomizations": { | |
"[Visual Studio Light]": { | |
"comments": "#8a8784" | |
} | |
}, | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"workbench.statusBar.feedback.visible": false, | |
"git.confirmSync": false, | |
"debug.showInStatusBar": "always", | |
"window.zoomLevel": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment