Files
skel/dotfiles/zshrc.d/functions.zsh
David Tomaschik 3c8d8ca5e1 Starship support.
2022-05-08 16:01:23 -07:00

10 lines
197 B
Bash

function dumpenv {
tr '\0' '\n' < /proc/${1}/environ
}
if test -x "${HOME}/tools/starship/starship" ; then
function starship_prompt {
eval $($HOME/tools/starship/starship init zsh)
}
fi