Moved auth section to its own configuration file.
This commit is contained in:
parent
1679ca1e19
commit
b512e64fcb
2 changed files with 12 additions and 11 deletions
12
config.org
12
config.org
|
|
@ -200,17 +200,7 @@ features.
|
||||||
|
|
||||||
#+INCLUDE: "config/tidy.org" :minlevel 1
|
#+INCLUDE: "config/tidy.org" :minlevel 1
|
||||||
|
|
||||||
* Auth sources
|
#+INCLUDE: "config/auth.org" :minlevel 1
|
||||||
|
|
||||||
I make sure the auth sources are within the emacs directory. I use gpg, but in case there's
|
|
||||||
a plain text one laying around I'll use that too. Finally as I use pass I've enabled
|
|
||||||
password-store as well; Though I'm not sure this actually works currently.
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(auth-source-pass-enable)
|
|
||||||
(setq auth-sources '("~/.emacs.d/.authinfo.gpg" "~/.emacs.d/.authinfo"
|
|
||||||
"password-store"))
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
* Path
|
* Path
|
||||||
|
|
||||||
|
|
|
||||||
11
config/auth.org
Normal file
11
config/auth.org
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
* Auth sources
|
||||||
|
|
||||||
|
I make sure the auth sources are within the emacs directory. I use gpg, but in case there's
|
||||||
|
a plain text one laying around I'll use that too. Finally as I use pass I've enabled
|
||||||
|
password-store as well; Though I'm not sure this actually works currently.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(auth-source-pass-enable)
|
||||||
|
(setq auth-sources '("~/.emacs.d/.authinfo.gpg" "~/.emacs.d/.authinfo"
|
||||||
|
"password-store"))
|
||||||
|
#+end_src
|
||||||
Loading…
Reference in a new issue