chore(zsh): ls on cd and zshenv fix

This commit is contained in:
Afonso Franco 2024-11-28 18:33:21 +00:00
parent 97cde4780d
commit 2ff14f2f5f
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
3 changed files with 17 additions and 2 deletions

View file

@ -45,3 +45,14 @@ function qmk_flash_left(){
}
alias nvim_update='nvim --headless "+Lazy! sync" +qa'
alias ..="cd .."
function cd()
{
builtin cd "$@" && ls;
}