mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
Set up org-agenda
This commit is contained in:
parent
42a85ab864
commit
9884d8efbe
15
init.org
15
init.org
@ -686,12 +686,17 @@
|
|||||||
|
|
||||||
** Org
|
** Org
|
||||||
|
|
||||||
I use =org-agenda= for appointments and such.
|
I use =org-agenda= along with =org-capture= for appointments and such.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq org-agenda-start-on-weekday nil ; Show agenda from today.
|
(setq org-agenda-start-on-weekday nil ; Show agenda from today.
|
||||||
org-agenda-files '("~/Dropbox/cal.org") ; A list of agenda files.
|
org-agenda-files '("~/Dropbox/agenda.org") ; A list of agenda files.
|
||||||
org-agenda-default-appointment-duration 120) ; 2 hours appointments.
|
org-agenda-default-appointment-duration 120 ; 2 hours appointments.
|
||||||
|
org-capture-templates ; Template for adding tasks.
|
||||||
|
'(("t" "Oppgave" entry (file+headline "~/Dropbox/agenda.org" "Oppgaver")
|
||||||
|
"** TODO %?" :prepend t)
|
||||||
|
("a" "Avtale" entry (file+headline "~/Dropbox/agenda.org" "Avtaler")
|
||||||
|
"** %?\n SCHEDULED: %T" :prepend t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
When editing org-files with source-blocks, we want the source blocks to
|
When editing org-files with source-blocks, we want the source blocks to
|
||||||
@ -1272,8 +1277,10 @@
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(define-key custom-bindings-map (kbd "C-j") 'newline-and-indent)
|
(define-key custom-bindings-map (kbd "C-j") 'newline-and-indent)
|
||||||
(define-key custom-bindings-map (kbd "C-c s") 'ispell-word)
|
(define-key custom-bindings-map (kbd "C-c s") 'ispell-word)
|
||||||
(define-key custom-bindings-map (kbd "C-c t") 'org-agenda-list)
|
(define-key custom-bindings-map (kbd "C-c c") 'org-capture)
|
||||||
(define-key custom-bindings-map (kbd "C-x m") 'mu4e)
|
(define-key custom-bindings-map (kbd "C-x m") 'mu4e)
|
||||||
|
(define-key custom-bindings-map (kbd "C-c t")
|
||||||
|
(lambda () (interactive) (org-agenda nil "n")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Bind the functions defined [[sec:defuns][above]].
|
Bind the functions defined [[sec:defuns][above]].
|
||||||
|
Loading…
Reference in New Issue
Block a user