====== 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 ===== - Install VSCode - Extensions I Use: - Better Comments (aaronbond.co.uk) - Colorize (kamikillerto) - Edit csv (janisdd) - Go (go.dev) - Jupyter (microsoft.com) - Markdown All in One (YuZhang) - Python (microsoft.com) - Rainbow CSV (mechatroner) - SQLite3 Editor (yy0931) ===== Enabling Git ===== * Linux 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 ===== * Install Python Modules (from terminal) * apt install python3-pip * apt install python3-tk *