How do I invoke Zsh interactively while asking it to not process .zshrc
?
Asked
Active
Viewed 1,034 times
0

Amelio Vazquez-Reina
- 41,161
-
2Possible duplicate of Start zsh with a custom zshrc – jesse_b Oct 19 '19 at 20:55
1 Answers
2
Try using:
zsh --no-rcs
The --no-rcs
option disables the RCS
shell option in zsh
. This prevents the shell from reading any other startup file than /etc/zshenv
(this file can not be ignored).

Kusalananda
- 333,661

Ole Tange
- 35,514