Commit cc195f1d by Anatoli Babenia Committed by Steph Samson

Use `.zshrc` instead of `.zprofile`

Because `.zprofile` is only run for login shells, it is not used
by graphical terminals. `.zprofile` is also not created by default.

Fixes #2620
parent 5b4c6a5e
......@@ -903,7 +903,7 @@ class Installer:
if "zsh" in SHELL:
zdotdir = os.getenv("ZDOTDIR", HOME)
profiles.append(os.path.join(zdotdir, ".zprofile"))
profiles.append(os.path.join(zdotdir, ".zshrc"))
bash_profile = os.path.join(HOME, ".bash_profile")
if os.path.exists(bash_profile):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment