Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Had to modify .zgen-setup to point to proper files #8

Closed
saltmade opened this issue Jul 20, 2015 · 3 comments
Closed

Had to modify .zgen-setup to point to proper files #8

saltmade opened this issue Jul 20, 2015 · 3 comments
Assignees

Comments

@saltmade
Copy link

Had to modify these lines:

if [ ! -f ~/zgen/zgen.zsh ]; then
  pushd ~
  git clone git@github.com:tarjoilija/zgen.git
  popd
fi
source ~/zgen/zgen.zsh

To this

if [ ! -f ~/zgen.zsh ]; then
  pushd ~
  git clone git@github.com:tarjoilija/zgen.git
  popd
fi
source ~/zgen.zsh

To get it to work. Stow didn't appear to create a symlink for the zsh folder itself. Is that standard behavior?

@unixorn
Copy link
Owner

unixorn commented Jul 20, 2015

Not creating a symlink to the zsh folder is standard stow behavior. When you're in the quickstart checkout directory, stow zsh should create symlinks from ~ to all the files within the zsh directory.

I'll set up a fresh account on a machine tonight to test the changes you made, I don't run the initial setup very often.

Thanks

@unixorn unixorn self-assigned this Jul 20, 2015
@alo0oz
Copy link

alo0oz commented Aug 20, 2018

Faced same problem. Had to change .zgen_setup manually.
Thanks.

@sanzoghenzo
Copy link

Hi, according to zgen's documentation, many new users (like me) will run

git clone https://github.com/tarjoilija/zgen.git "${HOME}/.zgen"

so the path to be checked should be $ZGEN_PARENT_DIR/.zgen/zgen.zsh.
This also allows a cleaner home (at first).

@unixorn unixorn closed this as completed Nov 13, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants