update to settings

This commit is contained in:
ZennDev1337 2024-09-26 10:58:37 +02:00
parent 74b7569bcc
commit 629d33deff
3 changed files with 8 additions and 5 deletions

2
.zshrc
View file

@ -52,6 +52,8 @@ 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'
alias diffcopy='function _copydiff() { git diff --cached | clipcopy; }; _copydiff'
alias venv='. ./.venv/bin/activate'
###################
# Start Scripts #