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)