[emacs] Remove auto dictionary switch + add open loops callable

This commit is contained in:
Sebastian Schulze 2018-09-06 01:09:17 +02:00
parent d09227b7f7
commit aaea8386d1
Signed by: bascht
GPG Key ID: 5BCB1D3B4D38A35A
1 changed files with 10 additions and 3 deletions

View File

@ -144,9 +144,16 @@
(setq org-bullets-bullet-list
'("" "" ""))
;; Switch to German Dictionary for org files
(add-hook 'org-mode-hook (lambda ()
(adict-change-dictionary "german")))
; Recent loops callable for daily review
(defun my-org-agenda-recent-open-loops ()
(interactive)
(let ((org-agenda-start-with-log-mode t)
(org-agenda-use-time-grid nil))
(org-agenda nil "l")
(beginend-org-agenda-mode-goto-beginning)))
(add-to-list 'org-global-properties
'("Effort_ALL". "0:05 0:15 0:30 1:00 2:00 3:00 4:00"))
(spacemacs/toggle-mode-line-org-clock-on)