zsh: new c helper to change into a dir and list it

This commit is contained in:
2024-03-01 19:30:58 +00:00
parent c056984003
commit bba149c670

View File

@@ -161,9 +161,13 @@ in
# extra aliases
# TODO: move to `shellAliases` config?
function c() {
cd "$1"
l
}
function nd() {
mkdir -p "$1";
pushd "$1";
mkdir -p "$1"
pushd "$1"
}
function repo() {