automated dev commit

This commit is contained in:
Mariano Z. 2025-05-05 14:36:02 -03:00
parent cf74e468e4
commit 40f995b0ff
2 changed files with 6 additions and 2 deletions

View file

@ -5,7 +5,6 @@ alias yeet="sudo pacman -Rns"
alias orphan="doas pacman -Rns (pacman -Qtdq)"
# Navigation shortcuts
alias dc="cd"
alias gD="cd ~/Desktop"
alias gd="cd ~/Downloads"
alias gr="cd ~/Development/"

View file

@ -50,7 +50,6 @@ yarnpkg() { echo 🖕; }
pnpm() { echo 🖕; }
pn() { echo 🖕; }
pnpx() { echo 🖕; }
npm() { echo 🖕; }
alias p='_package_manager'
@ -291,3 +290,9 @@ if command -v kubefwd &> /dev/null; then eval "$(kubefwd completion zsh)"; fi
if command -v bombadil &> /dev/null; then eval "$(bombadil generate-completions zsh)"; fi
if command -v eza &> /dev/null; then compdef eza=ls; fi
function dc() {
git add .
git commit -m 'automated dev commit' --no-gpg-sign
git push
}