Skip to content

Commit

Permalink
fix(vars): fix environment variable for disabling early-config.el
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Oct 28, 2023
1 parent 35878bd commit 7e22ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/me-vars.el
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'(config modules early-config init-tweaks)
(when (getenv "MINEMACS_IGNORE_CONFIG_EL") '(config))
(when (getenv "MINEMACS_IGNORE_MODULES_EL") '(modules))
(when (getenv "MINEMACS_IGNORE_CONFIG_EL") '(early-config))
(when (getenv "MINEMACS_IGNORE_EARLY_CONFIG_EL") '(early-config))
(when (getenv "MINEMACS_IGNORE_INIT_TWEAKS_EL") '(init-tweaks))))
"Ignore loading these user configuration files.
Accepted values are: `config', `modules', `early-config' and `init-tweaks'.
Expand Down

0 comments on commit 7e22ce2

Please sign in to comment.