Skip to content

Instantly share code, notes, and snippets.

@felipegenuino
Created October 25, 2019 14:11
Show Gist options
  • Save felipegenuino/c5f9d12a3b43a615bd2d54a5d2ce1f7e to your computer and use it in GitHub Desktop.
Save felipegenuino/c5f9d12a3b43a615bd2d54a5d2ce1f7e to your computer and use it in GitHub Desktop.
config editor vscode
{
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"terminal.integrated.shell.windows": "C:\\Users\\felipe.genuino\\AppData\\Local\\Programs\\Git\\bin\\bash.exe",
"editor.accessibilitySupport": "off",
"editor.fontFamily": "Fira Code",
"editor.rulers": [
80,
120
],
"editor.tabSize": 2,
"editor.fontLigatures": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"git.autofetch": true,
"editor.formatOnSave": true,
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"terminal.integrated.rendererType": "dom"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment