Created
December 10, 2018 15:22
-
-
Save adyz/8f64817292ef7f6e31b57c0127895a1f 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
{ | |
editor.minimap.enabled: false, | |
workbench.editor.showTabs: false, | |
workbench.activityBar.visible: false, | |
workbench.editor.showIcons: true, | |
workbench.iconTheme: "vs-minimal", | |
terminal.external.osxExec: "iTerm.app", | |
terminal.integrated.shell.osx: "/bin/zsh", | |
workbench.statusBar.visible: false, | |
window.zoomLevel: 0, | |
files.autoSave: "onFocusChange", | |
workbench.commandPalette.history: 0, | |
workbench.editor.tabSizing: "shrink", | |
explorer.openEditors.visible: 0, | |
workbench.editor.enablePreview: false, | |
window.restoreWindows: "none", | |
workbench.colorTheme: "GitHub Plus", | |
explorer.autoReveal: false, | |
workbench.editor.enablePreviewFromQuickOpen: false, | |
editor.scrollbar.verticalScrollbarSize: 6, | |
telemetry.enableCrashReporter: false, | |
telemetry.enableTelemetry: false, | |
sonarlint.disableTelemetry: true, | |
editor.tabCompletion: true, | |
files.exclude: { | |
**/.git: true, | |
**/.svn: true, | |
**/.hg: true, | |
**/CVS: true, | |
**/.DS_Store: true, | |
node_modules: true | |
}, | |
workbench.sideBar.location: "left", | |
typescript.updateImportsOnFileMove.enabled: "always", | |
javascript.updateImportsOnFileMove.enabled: "always", | |
cSpell.userWords: [ | |
"Checkboxes", | |
"Datepicker", | |
"Wuhu", | |
"crossdomain", | |
"crossorigin", | |
"deserialize", | |
"devtool", | |
"docz", | |
"nanoid", | |
"plex", | |
"resizable", | |
"uncheck", | |
"woff" | |
], | |
breadcrumbs.enabled: true, | |
prettier.requireConfig: true, | |
prettier.tslintIntegration: true, | |
workbench.colorCustomizations: { | |
titleBar.activeForeground: "#000", | |
titleBar.inactiveForeground: "#fff", | |
titleBar.activeBackground: "#e4a163", | |
titleBar.inactiveBackground: "#e2af80" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment