;;; journal-init.el --- configuration file for Journal ;; 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. ;;; Add to load path (add-to-list 'load-path "/stuff/proj/emacs/journal/mwolson") ;;; Initialize (require 'journal) (custom-set-variables '(journal-default-category "CategoryPersonal") '(journal-directory "~/proj/wiki/blog") '(journal-home-page "MyJournal") '(journal-project "BlogWiki") '(journal-project-server-prefix "../blog/") '(journal-publishing-directory "~/personal-site/site/blog") '(journal-time-format "%a %b %e %Y") '(journal-title "Michael Olson's Blog") '(journal-use-other-window nil)) (custom-set-faces) ;;; journal-init.el ends here