These are my dotfiles for use on arch and ubuntu based linux distributions. My setup includes:
Feel free to use any of the configurations herein as inspiration.
- clone the repository
cd ~git clone --bare git@github.com:radleylewis/dotfiles.git .dotfiles- include dotfiles alias in .bashrc / .zshrc
echo alias dotfiles=\'git --git-dir='$HOME'/.dotfiles --work-tree='$HOME'\' >> .bashrcsource ~/.bashrcdotfiles config status.showUntrackedFiles no # don't track files noting $HOME work-treedotfiles checkout # populates dotfiles to their respective locationscd ~/.config/nvimdotfiles submodule update # clones the submodule nvim which may not happen automaticallyOnce setup, useful commands include:
dotfiles status
dotfiles add <filename> # add a new dotfile
dotfiles add -u # add unstaged filesRadley E. Sidwell-Lewis