add dotfiles function

This commit is contained in:
PowerUser64 2022-05-15 01:24:16 -07:00
parent 5ba64363f8
commit b171b1e8e9

View file

@ -0,0 +1,6 @@
#!/bin/bash
# This is a copy of the 'dot' alias, as a function, for use in other functions
dotfiles() {
git --git-dir="$HOME/git/dotfiles" --work-tree="$HOME"
}