Last active
May 23, 2021 13:24
-
-
Save henriqgoncalvs/fa94d342abe32fce0d71fc14daa4f19c to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains 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
{ | |
/* | |
EXTENSIONS | |
patbenatar.advanced-new-file | |
formulahendry.auto-rename-tag | |
coenraads.bracket-pair-colorizer-2 | |
softwaredotcom.swdc-vscode | |
naumovs.color-highlight | |
dracula-theme.theme-dracula | |
editorconfig.editorconfig | |
dsznajder.es7-react-js-snippets | |
dbaeumer.vscode-eslint | |
eamodio.gitlens | |
nur.just-black | |
ms-vsliveshare.vsliveshare | |
pkief.material-icon-theme | |
esbenp.prettier-vscode | |
jmfirth.vsc-space-block-jumper | |
rangav.vscode-thunder-client | |
jpoissonnier.vscode-styled-components | |
*/ | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "material-icon-theme", | |
"terminal.external.osxExec": "/bin/zsh", | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.rulers": [100, 120], | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"workbench.panel.defaultLocation": "right", | |
"editor.formatOnSave": false, | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"eslint.format.enable": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"explorer.compactFolders": false, | |
"editor.tabSize": 2, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment