Skip to content

Latest commit

 

History

History
67 lines (48 loc) · 3.15 KB

README.md

File metadata and controls

67 lines (48 loc) · 3.15 KB

my-default-code-extensions

Here's my proposal to improve the development experience using Visual Studio Code extensions. It's not oriented to any languange and I'm also thinking in something like my-node-development-tools or something like that 🤔

Recommended extensions

1. Material Icon Theme

A really Visual Studio explorer Theme to improve the icons and folders look & feel, more information in this link

2. GitLens — Git supercharged

Improved visual toolkit to handle git features, like file history or something better, in this link

3. Live Server

I'm sure this one doesn't need any other explanation, more information here

4. Docker

I'm sure this one doesn't need any other explanation either, more information here

5. Prettier Formatter for Visual Studio Code

Interesting formatter for variety of programming languages, more information in this link

6. Todo Tree

In case you need to see how many TODO statements have in your code, link here

7. Markdown All in One

To improve the markdown default support, more information in this link

How to use it

You can clone this repo, open it and accept the default intstallation process, or just copy the extensions.json content:

  {
    "recommendations": [
      "Gruntfuggly.todo-tree", 
      "esbenp.prettier-vscode",
      "ritwickdey.LiveServer", 
      "eamodio.gitlens", 
      "ms-azuretools.vscode-docker", 
      "yzhang.markdown-all-in-one",
      "pkief.material-icon-theme"
    ]
  }