Personal dotfiles
- Install gog
- Run the following in a terminal:
gog repository add andornaut https://github.com/andornaut/dotfiles.git
gog apply
cat <<'EOF' >> ~/.bashrc
if [[ $- == *i* ]]; then
# Only source additional customizations if the shell is interactive
for f in ${HOME}/.bashrc.* ${HOME}/.bash_aliases; do
if [[ ${f} != *.swp ]]; then
source ${f}
fi
done
fi
EOF