First couple of steps to get a new ubuntu box usable.
sudo apt update
sudo apt upgrade
sudo apt install tldr vim plocate net-utils
tldr -u
https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
type nvm
nvm install --lts
nvm use --lts
npm install -g yarn
git clone https://github.com/mathiasbynens/dotfiles.git && cd dotfiles && source bootstrap.sh
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt upgrade -y
git config --global user.name "YOUR NAME"
git config --global user.email "YOUR EMAIL"
git config --global alias.ls '!f() { git log $1 --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cgreen\\ [%ae,%ar]" --decorate --graph; }; f'