From 8af85e909fa53015eb19b0c4a0d3da438341bb98 Mon Sep 17 00:00:00 2001 From: Me Date: Sun, 9 Feb 2014 21:52:09 -0800 Subject: [PATCH] I added magit mode code and updated updated the org-agenda-files variable. --- init.el | 5 +---- lisp.d/magit.el | 6 ++++++ 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 lisp.d/magit.el diff --git a/init.el b/init.el index b41e5e7..3257b21 100644 --- a/init.el +++ b/init.el @@ -12,10 +12,7 @@ ;; 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. - '(org-agenda-files (quote ( - "~/Documents/planning/categories/personal.org" - "~/Documents/planning/categories/travel.org" - )))) + '(org-agenda-files (quote ("~/Documents/planning/projects/operations.org" "~/Documents/planning/categories/travel.org")))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/lisp.d/magit.el b/lisp.d/magit.el new file mode 100644 index 0000000..697c7a9 --- /dev/null +++ b/lisp.d/magit.el @@ -0,0 +1,6 @@ +(add-to-list 'load-path (expand-file-name "~/Software/Emacs/Lisp/git-modes/current")) +(add-to-list 'load-path (expand-file-name "~/Software/Emacs/Lisp/magit/current")) +(eval-after-load 'info + '(progn (info-initialize) + (add-to-list 'Info-directory-list (expand-file-name "~/Software/Emacs/Lisp/magit/current")))) +(require 'magit)