Skip to content

Commit

Permalink
can use org-mode 7.5, just remember to make && make install to avoid
Browse files Browse the repository at this point in the history
org-version-check error
  • Loading branch information
lefnire committed Jun 29, 2011
1 parent c75401b commit 8c95a8a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lefnire.el
Expand Up @@ -114,15 +114,17 @@

; ######## Org Mode ########
; ############################
;; (setq load-path (cons (concat user-specific-dir "/org-mode/lisp") load-path))
;; (setq load-path (cons (concat user-specific-dir "/org-mode/contrib/lisp") load-path))
(setq load-path (cons (concat user-specific-dir "/org-mode/lisp") load-path))
(setq load-path (cons (concat user-specific-dir "/org-mode/contrib/lisp") load-path))
(require 'org-install)
;; The following lines are always needed. Choose your own keys.
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(add-hook 'org-mode-hook 'turn-on-font-lock) ; not needed when global-font-lock-mode is on
;; (global-set-key "\C-cl" 'org-store-link)
;; (global-set-key "\C-ca" 'org-agenda)
;; (global-set-key "\C-cb" 'org-iswitchb)
;; These should be accessible through global keys (i.e. anywhere in Emacs, not just in Org buffers)
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)

;;;Custom
(setq org-todo-keywords '((sequence "TODO" "WAITING" "|" "DONE")))
Expand Down

0 comments on commit 8c95a8a

Please sign in to comment.