;;; gnus-init.el --- Initialize gnus. ;; This file is part of Michael Olson's Emacs settings. ;; The code in this file may be used, distributed, and modified ;; without restriction. ;; I use initsplit.el to separate customize settings on a per-project ;; basis. ;; This is called by ~/.emacs.d/.emacs.el and only contains ;; pre-requisite sort of stuff that needs to be set before anything ;; happens with gnus. Everything else should go into ;; ~/.emacs.d/.gnus.el . ;;; Use the development version of gnus instead of the "real" one ;; Prepend working directory to load path ;(add-to-list 'load-path "/home/mwolson/proj/emacs/gnus/lisp") ;(require 'gnus-load) ;; Set paths to things so that they're ready when gnus starts (setq gnus-init-file "~/.emacs.d/.gnus.el" gnus-startup-file "~/.emacs.d/.newsrc") ;;; gnus-init.el ends here