Last active
September 16, 2022 13:48
-
-
Save ricardojrgpimentel/4ed74dd2d67c984a4faa57809a1f1bfa to your computer and use it in GitHub Desktop.
vscode config
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
{ | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"editor.tabSize": 2, | |
"editor.fontFamily": "Monoid NF", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 25, | |
"git.enableSmartCommit": true, | |
"editor.formatOnSave": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"window.titleBarStyle": "custom", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.esLint": true | |
}, | |
"eslint.validate": ["javascript"], | |
"editor.cursorBlinking": "phase", | |
"editor.cursorSmoothCaretAnimation": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.formatOnSaveMode": "modifications", | |
"eslint.format.enable": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
//extensions | |
//babel | |
//editorconfig | |
//eslint | |
//gitlens | |
//one dar pro | |
//powershell | |
//prettier | |
//sass | |
//tokyo night | |
//vscode-icons |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment