Visual Studio Code and my Setup
My Top Packages Path Intelisense This helps you get the relative path of your file and help you to autocomplete path names when you do something like… import MyComponent from './src/components/MyComponent' ; Plus, this works with dependencies from your packages.json . Project Manager This extension helps my life so much. When you have a lot of projects and don't want to waste time finding each one on your computer, you can just save them right inside the window. Just press shift + cmd + p and Project Manager: Save Project . Afterwards, you can just come back to your text editor and search right in the project manager by typing shift + cmd + p and Project Manager: List Projects to Open . Auto Rename Tag This one doesn't do much. But what it does do is a huge help! For example, you’re working on a React project and you want to change your component MyApp to be YourApp . This extension will rename rename every ...