File search through Launcher chrome://flags/#enable-drive-search-in-app-launcher
Use newer Bluetooth chrome://flags/#newblue
This seems hit or miss, I still have an audio delay with both AirPods and QC35II
Nimbus - Screenshot Utility
uBlock Origin - Ad blocker
1Password X - Password Manager
Reddit Enhancement Suite
Enable Linux support in Settings
In Terminal, run to properly set timezone: sudo dpkg-reconfigure tzdata
Run this to be able to run add-apt-repository command sudo apt install software-properties-common
Install Docker: https://hackernoon.com/pixelbook-revisited-running-docker-containers-aa7c742a7dec
curl -L "https://go.microsoft.com/fwlink/?LinkID=760868" > vscode.deb
sudo apt install ./vscode.deb
Had issues getting VS Code to save GitHub username, easier to just clone repos via ssh (with key added to GitHub profile) vs https
Install Oh-My-Zsh, need to use patched files for prompt
In settings.json need to update font info for both editor and terminal
Set window.titleBarStyle
to a value of custom in settings.json for a more integrated title bar look
Bracket Pair Colorizer
indent-rainbow
Markdown All in One
Material Icon Theme
PowerShell
Python
Gist
VS Live Share
Settings Sync
Prettier
Go
JSON Helper
sudo apt-get install python3-pip
Download latest from golang.org
sudo tar -C /usr/local -xzf go1.10.3.linux-amd64.tar.gz
vi ~/.profile
And add the following at the end:
if [ -d "/usr/local/go/bin" ] ; then
PATH="$PATH:/usr/local/go/bin"
fi
Then to apply changes immediately:
source ~/.profile