mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Ignore envvars prefixed with __
They are likely private. There are some public variables with single underscore prefixes, however, like _FASD_DATA and _FASD_VIMINFO.
This commit is contained in:
@ -57,7 +57,8 @@ needs to be run once)."
|
||||
;; Doom envvars
|
||||
"^INSECURE$"
|
||||
"^DEBUG$"
|
||||
"^YES$")
|
||||
"^YES$"
|
||||
"^__")
|
||||
"Environment variables to not save in `doom-env-file'.
|
||||
|
||||
Each string is a regexp, matched against variable names to omit from
|
||||
|
Reference in New Issue
Block a user