We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f90544 commit 08d13a0Copy full SHA for 08d13a0
zshenv
@@ -1,5 +1,12 @@
1
# vim: ft=zsh
2
3
+# disable global rc files and manually load instead. This allows us to prevent
4
+# loading /etc/zprofile on OSX 11.x
5
+setopt no_global_rcs
6
+if [ -f /etc/zshenv ]; then
7
+ source /etc/zshenv
8
+fi
9
+
10
for config_file (~/.zsh/startup/*.zshenv(rN)); do
11
source $config_file
12
done
zshrc
@@ -1,5 +1,9 @@
+if [ -f /etc/zshrc ]; then
+ source /etc/zshrc
for config_file (~/.zsh/startup/*.zsh(rN)); do
0 commit comments