Skip to content

Commit

Permalink
Put some org-mode config in init.el.
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeto committed Jul 2, 2012
1 parent a520aef commit 9455813
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@
(winner-mode 1)
(windmove-default-keybindings)

;; org-mode
(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)
(add-hook 'org-shiftup-final-hook 'windmove-up)
(add-hook 'org-shiftleft-final-hook 'windmove-left)
(add-hook 'org-shiftdown-final-hook 'windmove-down)
(add-hook 'org-shiftright-final-hook 'windmove-right)
(setq org-log-done 'time)

;; Git
(add-to-list 'load-path "~/.emacs.d/magit")
(require 'magit)
Expand Down

0 comments on commit 9455813

Please sign in to comment.