Skip to content

Instantly share code, notes, and snippets.

@enriquemorenotent
Last active August 17, 2023 10:55
Show Gist options
  • Save enriquemorenotent/67d8af838cae6f0de60c53753d6e8a0d to your computer and use it in GitHub Desktop.
Save enriquemorenotent/67d8af838cae6f0de60c53753d6e8a0d to your computer and use it in GitHub Desktop.
My favorite extensions and settings for Visual Studio Code
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"
}
]
}
@congthanhnguyen1749
Copy link

Thanks ❤️

@enriquemorenotent
Copy link
Author

You are very welcome!

@mokadev90
Copy link

thank you so much! that's cool!

@enriquemorenotent
Copy link
Author

@romeramatias2020 I am glad you like it!

@Knight174
Copy link

Thanks~

@zzz-icy
Copy link

zzz-icy commented Aug 17, 2023

Thanks for sharing!

@enriquemorenotent
Copy link
Author

@zzz-icy My pleasure

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