From 82fecd4df4ed9be1f63aec638ddc83f9410296ef Mon Sep 17 00:00:00 2001 From: ZennDev1337 Date: Thu, 19 Sep 2024 11:24:09 +0200 Subject: [PATCH] update to settings --- .zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.zshrc b/.zshrc index b6cd052..ac84629 100644 --- a/.zshrc +++ b/.zshrc @@ -49,6 +49,8 @@ alias clr="clear" alias cat="batcat" alias pycharm="XCURSOR_SIZE=16 pycharm $1" alias loop='function _loop() { while true; do "$@"; sleep 5; done; }; _loop' +alias gitall='function _gitall() { git commit -am "$1"; git push -u origin main; }; _gitall' +alias zed-update='function _zed_update() { loc=$(pwd); cd ~/zed; git pull origin main; ./script/install-linux; cd $loc; }; _zed_update' ################### # Start Scripts #