diff options
author | Kyle Meyer <kyle@kyleam.com> | 2013-11-11 21:36:43 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2013-11-12 00:16:10 -0500 |
commit | 5c0104d51c12f7c0df294c10bf73fb92d916c7ff (patch) | |
tree | 41ce86f3e546e7bf62109b14f61cbec09766eae8 /init | |
parent | f503bddc6756b7cb21f6e8f925ea0d15e2546689 (diff) | |
download | emacs.d-5c0104d51c12f7c0df294c10bf73fb92d916c7ff.tar.gz |
Explicitly set gnus init and startup files
Some change in initialization has resulted in different values for these
variables (not sure exactly what), so I am setting explicitly. I'm also
changing them to visible files since they are already in a hidden
directory.
Diffstat (limited to 'init')
-rw-r--r-- | init/km-gnus.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/init/km-gnus.el b/init/km-gnus.el index 2a5324a..4751286 100644 --- a/init/km-gnus.el +++ b/init/km-gnus.el @@ -10,6 +10,9 @@ gnus-kill-files-directory "~/.gnus.d/scores" gnus-cache-directory "~/.gnus.d/cache") +(setq gnus-startup-file (nnheader-concat gnus-home-directory "newsrc")) +(setq gnus-init-file (nnheader-concat gnus-home-directory "gnus")) + (setq gnus-save-newsrc-file nil gnus-read-newsrc-file nil) |