Last active
August 17, 2023 10:55
-
-
Save enriquemorenotent/67d8af838cae6f0de60c53753d6e8a0d to your computer and use it in GitHub Desktop.
My favorite extensions and settings for Visual Studio Code
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
Extensions | |
========== | |
ext install wakatime.vscode-wakatime (time tracking) | |
ext install esbenp.prettier-vscode (prettifier) | |
ext install ms-vscode.csharp (C#) | |
ext install mikestead.dotenv (.env files) | |
ext install msjsdiag.debugger-for-chrome (chrome's debugger) | |
ext install deerawan.vscode-faker (faker) | |
ext install ms-vsliveshare.vsliveshare (shared coding sessions) | |
ext install file-icons.file-icons (file icons) | |
ext install bierner.emojisense (emoji insertion) | |
ext install ericadamski.carbon-now-sh | |
Preferences | |
=========== | |
{ | |
"editor.renderWhitespace": "none", | |
"editor.minimap.enabled": false, | |
"editor.fontFamily": "Ubuntu Mono", | |
"editor.fontSize": 18, | |
"editor.formatOnSave": true, | |
"workbench.sideBar.location": "right", | |
"workbench.statusBar.feedback.visible": false, | |
"csharp.referencesCodeLens.enabled": false, | |
"emmet.includeLanguages": { "javascript": "javascriptreact" } | |
"files.trimTrailingWhitespace": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true, | |
"**/web/node_modules": true, | |
"**/web/build": true, // will change frequently by build command | |
"**/admin/node_modules": true | |
} | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"emojisense.languages": { | |
"javascript": true | |
} | |
} | |
.prettierrc | |
=========== | |
{ | |
"useTabs": true, | |
"printWidth": 100, | |
"tabWidth": 4, | |
"semi": false, | |
"bracketSpacing": true | |
} | |
Debugging (launch.json) | |
======================= | |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch localhost", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost:3000/", | |
"webRoot": "${workspaceFolder}/wwwroot" | |
} | |
] | |
} |
You are very welcome!
thank you so much! that's cool!
@romeramatias2020 I am glad you like it!
Thanks~
Thanks for sharing!
@zzz-icy My pleasure
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks ❤️