Various dot files to keep things portable and so I can always feel 'at home' wherever I go....
Prerequisites:
Might look something like this:
sudo add-apt-repository -y ppa:fish-shell/release-3
sudo apt install -y fish
sudo chsh $(whoami) -s $(which fish)
Copy and paste this snippet into a running fish shell:
ssh-keyscan github.com >> ~/.ssh/known_hosts
alias dots="/usr/bin/git --git-dir=$HOME/.dots.git/ --work-tree=$HOME"
git clone --bare [email protected]:robacarp/config_files.git $HOME/.dots.git
dots checkout -f
dots config --local status.showUntrackedFiles no
dots config user.name 'rob' ; dots config user.email '[email protected]'
vim --cmd 'so ~/.config/.vim-plugins' --cmd 'PlugInstall' +'qall!'