From 73427ca5ba6f6ae0ca72b6fba31892643c2b55ac Mon Sep 17 00:00:00 2001 From: Adam <24621027+adoyle0@users.noreply.github.com> Date: Sat, 11 Feb 2023 11:53:40 -0500 Subject: [PATCH] more lazy --- .config/zsh/.zshrc | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 65b8e04..5008b20 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -28,9 +28,18 @@ v="vim ." \ x="exit" \ ka="killall" \ bb="byobu" \ +t="tree -L" \ +glow="clear && glow" \ +push="rsync -avzP" \ +vs="source bin/activate" \ +vd="deactivate" \ +doors_update="cd && curl https://doordesk.net/setup | bash" \ +drm="docker rm -vf $(docker ps -aq)" \ +drmi="docker rmi -f $(docker images -aq)" \ # Shortcuts alias \ +hosts="sudo nvim /etc/hosts" \ cf="~/.config && v" \ cfv="~/.config/nvim && v" \ cfa="~/.config/awesome && v" \ @@ -55,12 +64,6 @@ grep="grep --color=auto" \ diff="diff --color=auto" \ ccat="highlight --out-format=ansi" \ -# Laziness -alias \ -hosts="sudo nvim /etc/hosts" \ -push="rsync -avzP " \ -vs="source bin/activate" \ -vd="deactivate" \ # Forget why wget="wget --hsts-file='XDG_CACHE_HOME/wget-hsts'" \