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:
parent
09d13fd60d
commit
597ef77c20
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue