My VSCode Toolbox - 2020

Braydon Coyer

Braydon Coyer / November 16, 2020

4 minute read

--- views
Cover

There are a plethora of options when it comes to code editors, especially for front-end developers. I've tried Atom, Sublime Text, Webstorm - you name it. While each editor has its own strengths, I find myself coming back to VSCode purely for its level of customization.

As 2020 wraps up, I thought it would be interesting to cover my personal setup so you can take a look into how I work and so that I can look back in 2021 and see what's changed.

Let's dive in!

Theme

Let's start with the big one. There's no lack of themes with VSCode. I prefer a dark theme and I've settled on Sarah Drasner's Night Owl . It is extremely pleasing to the eye and special thought was put into color selection and contrast in terms of reading comprehension.

If you're not a fan of dark themes, Sarah created a light option too.

Screen Shot 2020-11-16 at 9.28.04 AM.png

Extensions

This is where functionality really comes into play. Extensions allow you to add features into VSCode to fit your productivity.

Here's a list of my installed extensions:

VSCode Great Icons

Just like the case with themes in VSCode, there are plenty of icon packs too. I use this icon pack and think it looks pretty good.

image.png

Install VSCode Great Icons here!

Auto Close Tags

This one is really handy and likely an extension that most people have. When you close the opening tag of an element, this extension automatically includes the closing tag.

autoclose.gif

Install Auto Close Tags here!

Auto Rename Tags

Made by the same developer as Auto Close Tags, this extensions allows you to rename a pair of HTML tags.

autorename.gif

Install Auto Rename Tags here!

Bracket Pair Colorizer

This amazing extension allows matching brackets to be identified with the same color and makes it way easier to find that rouge closing bracket.

image.png

You'll want to make sure you install Bracket Pair Colorizer!

Indent Rainbow

This is one of my favorites. This extension colorizes the indentation in front of your text so better see distinction in code-blocks.

image.png

Install Indent Rainbow!

iTunes & Apple Music Player

Perhaps one of the crazier extensions out there, this one allows you to control your music inside of VSCode. Am I too lazy to simply open the Music app and pause the track? Yes. Yes I am.

image.png

Check out iTunes & Apple Music Player here!

Tailwind CSS IntelliSense

I use Tailwind almost daily, and this extension brings autocomplete, syntax highlighting and linting which saves you a lot of headache. It was made by Brad Cornes, who now works for Tailwind. Pretty neat!

image.png

Check out Tailwind CSS IntelliSense!

Prettier

The classic option for formatting your code.

image.png

Install Prettier here!

ESLint

Another classic option for code linting.

image.png

ESLint can be installed here!

Docker

If you use Docker, this official plugin from Microsoft allows you to easily build, manage, and deploy containerized applications from VSCode.

docker.gif

Install the Docker extension here!

VSCode Settings

When I'm in the groove, I prefer to remove as many distractions as I can so I can focus on what is in front of me. Because of this, I've changed some minor things in the editor to aid in that endeavor, like moving the file editor panel to the right-hand side of the application, and utilizing shortcuts to quickly show/hide pieces of the editor.

1{
2 ...
3 "editor.fontSize": 16,
4 "workbench.sideBar.location": "right",
5 "editor.formatOnPaste": true,
6 "editor.quickSuggestionsDelay": 0
7}

After applying these settings, VSCode looks like this.

Screen Shot 2020-11-16 at 9.36.00 AM.png

Conclusion

What themes, extensions and settings do you use in VSCode? Feel free to drop your preferences in the comments below!

Thanks for reading! If you liked this article and want more content like this, read some of my other articles, and make sure to follow me on Twitter!

Articles delivered to your inbox!

A periodic update about my life, recent blog posts, how-tos, and discoveries.

As a thank you, I'll also send you a FREE CSS tutorial!

No spam - unsubscribe at any time!