feat: Adding a new function to print out the path variable in a newline delimited list, new aliases for quick actions and cleanup of zshrc for future changes

This commit is contained in:
2026-03-29 16:21:11 -05:00
parent 64868c6672
commit 4dd3c3eed6
3 changed files with 75 additions and 35 deletions

View File

@@ -16,3 +16,16 @@ function rmv() {
rsync -avzhP --remove-source-files --ignore-existing "${@:1:$#-1}" "${@:$#}" && \
find ./* -depth -type d -empty -exec rmdir "{}" \;
}
function new_note() {
nvim
}
function path() {
set -f
array=(${${PATH}//:/\\n})
for element in "${array[@]}"
do
echo $element
done
}