Skip to content

Instantly share code, notes, and snippets.

@kalecio
Created August 13, 2020 13:23
Show Gist options
  • Save kalecio/c17f0606c74bb0cd2a1ecfa5aba46921 to your computer and use it in GitHub Desktop.
Save kalecio/c17f0606c74bb0cd2a1ecfa5aba46921 to your computer and use it in GitHub Desktop.
My Vs Code Settings
{
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"editor.fontSize": 15,
"editor.lineHeight": 26,
"editor.tabSize": 2,
"editor.tabCompletion": "on",
"editor.wordWrap": "on",
"workbench.activityBar.visible": true,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"explorer.confirmDragAndDrop": false,
"diffEditor.renderSideBySide": true,
"editor.formatOnSave": true,
"html.autoClosingTags": false,
"editor.colorDecorators": false,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"prettier.singleQuote": true,
"files.associations": {
"*.js": "javascriptreact"
},
"editor.minimap.renderCharacters": false,
"breadcrumbs.enabled": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"color-highlight.markerType": "dot-before",
"editor.renderWhitespace": "selection",
"workbench.statusBar.visible": true,
"prettier.trailingComma": "all",
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.sortOrder": "default",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"window.newWindowDimensions": "inherit",
"html.format.wrapAttributes": "auto",
"html.format.wrapLineLength": 0,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"sync.gist": "09b57d0c9edfd2c03356ffe08e463027",
"sync.autoUpload": true,
"sync.autoDownload": true,
"sync.quietSync": true,
"workbench.colorTheme": "Dracula",
"window.zoomLevel": 0,
"editor.minimap.enabled": false
}
@kalecio
Copy link
Author

kalecio commented Aug 13, 2020

Caso esteja utilizando windows o caminho é:

%APPDATA%\Code\User\settings.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment