Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
I sometimes load a docker container with my home directory mounted. In the container, it's a different user, though mapped to my UID, however, because /home/username
is hard-coded into init.zsh
, it results in a bunch of errors when zsh loads zim in the container.
I've worked around it by replace /home/username
with $HOME
, however, I have to do this anytime zimfw
runs because it reverts my changes.
Describe the solution you'd like
Replace the path to the user's home directory with $HOME
in init.zsh
Describe alternatives you've considered
I guess since it's not quoted ~
works just as well, though I think $HOME
is probably a better choice.