feat(fish): update config and add git pull alias

This commit is contained in:
aria 2025-06-08 00:30:23 +10:00
parent b359fbd8d6
commit 7c54fa47d6
Signed by: aria
SSH key fingerprint: SHA256:WqtcVnDMrv1lnUlNah5k31iywFUI/DV+5yHzCTO4Vds
2 changed files with 7 additions and 0 deletions

View file

@ -18,3 +18,6 @@ set -gx VISUAL ms-edit
fish_add_path /home/buymymojo/bin
fish_add_path /home/buymymojo/.cargo/bin
fish_add_path $(go env GOBIN)
fish_add_path $(go env GOPATH)/bin

4
fish/functions/gp.fish Normal file
View file

@ -0,0 +1,4 @@
function gp --wraps='git pull --rebase' --description 'alias gp=git pull --rebase'
git pull --rebase $argv
end