Last active
March 27, 2019 16:01
-
-
Save joemaddalone/6e32e94d4173d4c4e793ecd225786440 to your computer and use it in GitHub Desktop.
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
{ | |
"editor.snippetSuggestions": "top", | |
"editor.insertSpaces": false, | |
"editor.minimap.enabled": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"workbench.colorTheme": "Afterglow", | |
"window.zoomLevel": 2, | |
"workbench.iconTheme": "vs-seti", | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"less": "css", | |
"html": "javascriptreact" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"files.associations": { | |
"*.schema": "graphql", | |
"*.jsx": "javascript", | |
"*.js": "javascript" | |
}, | |
"workbench.statusBar.visible": true, | |
"files.autoSave": "onFocusChange", | |
"beautify.options": { | |
"selector-separator-newline": true | |
}, | |
"extensions.ignoreRecommendations": false, | |
"css.validate": false, | |
"editor.fontSize": 13, | |
"workbench.startupEditor": "newUntitledFile", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.historyExplorer.enabled": true, | |
"editor.lineHeight": 0, | |
"terminal.integrated.fontSize": 13, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"javascript.validate.enable": false, | |
"gitlens.views.fileHistory.enabled": true, | |
"gitlens.views.lineHistory.enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment