My VSCode Toolbox — 2020

Braydon Coyer
4 min readJan 18, 2021

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.

2020 just wrapped up and 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 at the end of 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.

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.

Auto Close Tag

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.

Auto Close Tag Extension

Auto Rename Tag

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

Auto Rename Tag Extension

Bracket Pair Colorizer 2

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

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.

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.

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!

Prettier

The classic option for formatting your code.

ESLint

Another classic option for code linting.

Docker

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

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.

{
...
"editor.fontSize": 16,
"workbench.sideBar.location": "right",
"editor.formatOnPaste": true,
"editor.quickSuggestionsDelay": 0
}

After applying these settings, VSCode looks like this.

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 , subscribe to my newsletter and make sure to follow me on Twitter!

--

--

Braydon Coyer

Front-End Specialist who likes to share his findings with the world.