These are some of my dotfiles for my own reference, and anyone else who cares to look to see what I have.
bash < <(curl -sL https://raw.githubusercontent.com/arburty/dotfiles-and-scripts/master/bin/install.sh)
: call my install script off of github
The helpful_commands file are just commands I've found helpful along the way. I made it a markdown file to read it in a more pretty way using two tools
- pandoc
- lynx
and adding the function
md() {pandoc $1 | lynx && clear; }
to my ~/.bashrc. pandoc converts the markdown to html and lynx is a terminal browser.