diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-09 21:29:35 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-09 21:29:35 -0500 |
commit | 319010c3bb259b32c52e6ab1dded89dbdc345903 (patch) | |
tree | 80033cdba5c30b7edf771ddb198433b0dc09e8b6 | |
parent | 4b7207e1fa83e684820bf332b71a7200eeed4a80 (diff) | |
download | configs-319010c3bb259b32c52e6ab1dded89dbdc345903.tar.gz configs-319010c3bb259b32c52e6ab1dded89dbdc345903.tar.xz configs-319010c3bb259b32c52e6ab1dded89dbdc345903.zip |
[emacs] don't fail if secrets file not found, but show warning
-rw-r--r-- | init.org | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -327,8 +327,11 @@ it it's own file. While at it, treat themes as safe. ** Secrets file +Load the secrets file if it exists, otherwise show a warning. + #+begin_src emacs-lisp -(load (no-littering-expand-etc-file-name "secrets")) +(with-demoted-errors + (load (no-littering-expand-etc-file-name "secrets"))) #+end_src ** Better =$PATH= handling |