Created
January 16, 2019 03:13
-
-
Save maumercado/ddafa4dc7f496c0246f50e8cc4c1f916 to your computer and use it in GitHub Desktop.
User Settings for VSCode
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.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": true, | |
"editor.fontSize": 14, | |
"debug.allowBreakpointsEverywhere": true, | |
"vim.enableNeovim": true, | |
"typescript.check.npmIsInstalled": false, | |
"files.associations": { | |
"*.js": "javascript", | |
"*.html": "html", | |
"*.css": "css" | |
}, | |
"[javascript]": {}, | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"prettier.tabWidth": 4, | |
"prettier.singleQuote": false, | |
"prettier.eslintIntegration": true, | |
"window.title": "${activeEditorMedium}${separator}${rootName}", | |
"workbench.iconTheme": "vscode-great-icons", | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"html": "html" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"git.enableSmartCommit": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"gitlens.keymap": "alternate", | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"sync.gist": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.forceDownload": false, | |
"gitlens.views.fileHistory.enabled": true, | |
"gitlens.views.lineHistory.enabled": true, | |
"editor.formatOnSave": true, | |
"files.trimTrailingWhitespace": true, | |
"files.exclude": { | |
"**/dist": true, | |
"**/node_modules": true | |
}, | |
"javascript.referencesCodeLens.enabled": true, | |
"typescript.referencesCodeLens.enabled": true, | |
"window.zoomLevel": 0, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"go.autocompleteUnimportedPackages": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment