Add files

This commit is contained in:
Joe
2021-05-21 15:12:02 -05:00
commit ee8057f3cd
3 changed files with 112 additions and 0 deletions

11
.aliases Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias .....="cd ../../../.."
alias refresh="source .bashrc"
alias dotfiles="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"