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 for 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 ~/.bashrcDon't track files noting $HOME work-tree.
dotfiles config status.showUntrackedFiles noPopulate dotfiles to their respective locations.
dotfiles checkoutcd ~/.config/nvimClone the submodule nvim which may not happen automatically.
dotfiles submodule updateOnce setup, useful commands include:
dotfiles status
dotfiles add <filename> # add a new dotfile
dotfiles add -u # add unstaged filesRadley E. Sidwell-Lewis