From: Huck Boles Date: Mon, 12 Jun 2023 01:13:32 +0000 (-0500) Subject: fixed: pwd on change dir X-Git-Url: https://git.huck.website/?a=commitdiff_plain;h=929200846007591a7319d8858567c88bc7257527;p=zsh.git fixed: pwd on change dir --- diff --git a/include/aliases.zsh b/include/aliases.zsh index 6a6c44a..eff28ca 100644 --- a/include/aliases.zsh +++ b/include/aliases.zsh @@ -25,8 +25,6 @@ alias j='jobs -l' alias c='clear' alias zc='cd;clear' -alias cd='z ' - alias dust='dust -rb' alias xz='xz -v -T0 -9 -M64G' alias make='make CFLAGS="-march=sandybridge -O2 -pipe" -j48 -l30' diff --git a/include/functions.zsh b/include/functions.zsh index 2d8a789..c68c4fb 100644 --- a/include/functions.zsh +++ b/include/functions.zsh @@ -1,5 +1,12 @@ #!/bin/bash +# cd + ls wrapper + +cd() { + z $1 + ls +} + # easy find files f() { find . | grep "$1";