Link Search Menu Expand Document

VS Code

Settings

My VS Code settings are backed up with mackup to Dropbox.

To answer some general questions:

  • Font? FiraCode Nerd Font Mono
  • Fontsize? 16
  • Tabs or Spaces? Spaces
  • Tabwidth? 2 (4 in Python)
  • Linewidth? No fixed width - using word wrap.

Extensions

Visual Extensions

Productivity Extensions

  • EditorConfig for VS Code - Adds support for .editorconfig files for consistent coding styles for multiple developers working on the same project
  • Prettier Now - Automatically formats my code on save
  • MetaGo - Adds keyboard focused cursor navigation similar to vim easymotion
  • GitLens - Adds git blame annotations next to my code and offers several views to delve deep into the git history
  • gitignore - Adds file to .gitignore via right click
  • IntelliJ IDEA Key Bindings - Adds JetBrains IDEs key bindings, since I use WebStorm for bigger work-related projects
  • Path Intellisense - Autocompletes file paths and names
  • Project Manager - Enables me to easily switch between projects
  • TabOut - Enables to move out quotes, brackets, etc via Tab key

Front-End Extensions

Documentation Extensions

Other Extensions

  • Coderunner - Runs code snippets
  • Python - Adds features to support Python development such as linting, debugging, code formatting, refactoring and snippets
  • shellcheck - Finds bugs in your shell scripts
  • WakaTime - Tracks time and coding activity