Skip to content

Instantly share code, notes, and snippets.

@JeremyGeros
Created April 20, 2019 01:36
Show Gist options
  • Save JeremyGeros/d29ad14ce83f5c087ca48dcbb2a67a0a to your computer and use it in GitHub Desktop.
Save JeremyGeros/d29ad14ce83f5c087ca48dcbb2a67a0a to your computer and use it in GitHub Desktop.
{
"files.autoSave": "onFocusChange",
"editor.fontFamily": "Operator Mono SSm Lig, Operator Mono SSm",
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
".log": true,
"tmp/*": true,
"dist/*": true,
"node_modules/*": true,
"*.jpg": true,
"*.jpeg": true,
"*.png": true,
"*.gif": true,
"*.ttf": true,
"*.tga": true,
"*.dds": true,
"*.ico": true,
"*.eot": true,
"*.pdf": true,
"*.swf": true,
"*.jar": true,
"*.zip": true,
"_build/*": true,
"deps/*": true,
".happypack/*": true,
".map": true,
"node_modules/": true,
"**/._*": true,
".github": true,
".webpack-cache": true,
".circleci": true,
"attachments/": true
},
"editor.minimap.enabled": false,
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"activityBarBadge.background": "#00BCD4",
"list.activeSelectionForeground": "#00BCD4",
"list.inactiveSelectionForeground": "#00BCD4",
"list.highlightForeground": "#00BCD4",
"scrollbarSlider.activeBackground": "#00BCD450",
"editorSuggestWidget.highlightForeground": "#00BCD4",
"textLink.foreground": "#00BCD4",
"progressBar.background": "#00BCD4",
"pickerGroup.foreground": "#00BCD4"
},
"auto-close-tag.SublimeText3Mode": true,
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"prettier.eslintIntegration": true,
"vscode_custom_css.imports": [
"file:///Users/Jeremy/aha/vscode-style.css"
],
"editor.fontLigatures": false,
"files.useExperimentalFileWatcher": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"node_modules/": true,
"node_modules": true,
".webpack-cache": true
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"workbench.colorTheme": "One Dark Pro",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.gitExplorer.enabled": false,
"gitlens.historyExplorer.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.blame.avatars": false,
"gitlens.blame.compact": false,
"gitlens.blame.highlight.enabled": false,
"gitlens.blame.heatmap.enabled": false,
"gitlens.hovers.annotations.enabled": false,
"gitlens.statusBar.enabled": false,
"workbench.editor.showTabs": true,
"files.defaultLanguage": "json",
"breadcrumbs.enabled": true,
"gitlens.views.repositories.enabled": false,
"gitlens.views.fileHistory.enabled": false,
"gitlens.views.lineHistory.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment