I added magit mode code and updated updated the org-agenda-files
variable.
This commit is contained in:
parent
ad0627eaba
commit
8af85e909f
2 changed files with 7 additions and 4 deletions
5
init.el
5
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.
|
||||
|
|
6
lisp.d/magit.el
Normal file
6
lisp.d/magit.el
Normal file
|
@ -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)
|
Loading…
Reference in a new issue