You've already forked dotfiles
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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user