Add .fluxbox/keys.
[dotfiles-framework.git] / src / .emacs.d / load / wtk_org.el
1 ; setup org-mode
2 ; http://orgmode.org/manual/Activation.html
3 ; The following lines are always needed.  Choose your own keys.
4 (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
5 (global-set-key "\C-cl" 'org-store-link)
6 (global-set-key "\C-ca" 'org-agenda)
7 (global-set-key "\C-cb" 'org-iswitchb)
8
9 (setq browse-url-browser-function 'browse-url-firefox) ; loki hack
10
11 (defun org-time-stamp-now ()
12   "Insert the current timestamp in org-mode, without recourse to the calendar."
13   (interactive)
14   (org-insert-time-stamp (current-time) 'with-hm 'inactive))
15 (global-set-key "\C-cn" 'org-time-stamp-now)
16 ; end org-mode