;;; init.el --- Where all the magic begins ;; ;; This file loads both ;; - Org-mode : http://orgmode.org/ and ;; - Org-babel: http://orgmode.org/worg/org-contrib/babel/org-babel.php#library-of-babel ;; ;; It then loads the rest of our Emacs initialization from Emacs lisp ;; embedded in literate Org-mode files. ;; Load up Org Mode and Org Babel for elisp embedded in Org Mode files (add-to-list 'load-path "~/.emacs.d/org-mode/lisp") (add-to-list 'load-path "~/.emacs.d/org-mode/contrib/lisp") ;; load up Org-mode and Org-babel (require 'org-install) ;; load up the main file (org-babel-load-file "~/.emacs.d/emacs.org") (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(markchars-global-mode nil) '(org-agenda-files nil) '(org-capture-templates (quote (("t" "Todo" entry (file+headline "~/Documents/orgfiles/notes.org" "Tasks") "* TODO %U %? %i %a") ("j" "Journal" entry (file+headline "~/Documents/orgfiles//notes.org" "") "* %U %? %i %a") ("i" "Idea" entry (file+headline "~/Documents/orgfiles//notes.org" "New Ideas") "* %^{Title} %i %a") ("r" "Reference Material" entry (file+headline "~/Documents/orgfiles/./notes.org" "Reference") "*%? %&%^g") ("q" "Question to be addressed" entry (id "QUESTIONS") "* %? - file :: %(buffer-file-name (org-capture-get :original-buffer)) - revision :: %(vc-working-revision (buffer-file-name (org-capture-get :original-buffer))) - state :: %(symbol-name (vc-state (buffer-file-name (org-capture-get :original-buffer)))) - link :: %a - author :: Rainer M Krug, email: Rainer@krugs.de") ("c" "Changes to be logged for change log" entry (file+headline "" "") "* %T %? - file :: %(buffer-file-name (org-capture-get :original-buffer)) - revision :: %(vc-working-revision (buffer-file-name (org-capture-get :original-buffer))) - state :: %(symbol-name (vc-state (buffer-file-name (org-capture-get :original-buffer)))) - link :: %a - author :: Rainer M Krug, email: Rainer@krugs.de %n")))) ) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(markchars-heavy ((t (:background "red" :underline "magenta")))) '(markchars-light ((t (:background "red" :underline "light blue")))))