guix-dotfiles/home-config/fish/functions/__zoxide_pwd.fish

8 lines
129 B
Fish
Raw Normal View History

2024-04-12 23:09:46 -04:00
function __zoxide_pwd
if test "$_ZO_RESOLVE_SYMLINKS" = 1
builtin pwd -P
else
builtin pwd -L
end
end