Table of Contents

Microsoft Visual Studio Code

I use Visual Studio Code (VSCode) for nearly all of my programming activities. Combined with GitHub, it is a great cross-platform environment for planning, writing, documenting, and publishing my code.

This wiki is primarily for my own reference – to remember how I've set things up, which plug-ins I use and where I get them, and just general knowledge to keep track of.

Initial Setup

  1. Install VSCode
  2. Extensions I Use:
    1. Better Comments (aaronbond.co.uk)
    2. Colorize (kamikillerto)
    3. Edit csv (janisdd)
    4. Go (go.dev)
    5. Jupyter (microsoft.com)
    6. Markdown All in One (YuZhang)
    7. Python (microsoft.com)
    8. Rainbow CSV (mechatroner)
    9. SQLite3 Editor (yy0931)

Enabling Git

sudo apt install git git config –global user.name [a name] git config –global user.email [an email] On the VSCode welcome screen, click Clone Git Repository Type the path to the repository, e.g. “https://github.com/[user]/[repository]

Setup Python