reformatted column views and removed DELEGATE
This commit is contained in:
parent
2273e52d51
commit
0f0d0e66ab
12
etc/conf.org
12
etc/conf.org
|
@ -1113,7 +1113,10 @@ Since I use org mode as my config file, makes sense to have a table of contents
|
||||||
*** column view
|
*** column view
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq org-columns-default-format
|
(setq org-columns-default-format
|
||||||
"%25ITEM %4TODO %TAGS %5Effort{:} %6CLOCKSUM %ALLOCATE(ALC)")
|
(s-join
|
||||||
|
" "
|
||||||
|
'("%25ITEM" "%4TODO" "%TAGS" "%5Effort(EFFRT){:}"
|
||||||
|
"%5CLOCKSUM(CLKSM){:}" "%ALLOCATE(ALLOC)")))
|
||||||
|
|
||||||
(set-face-attribute 'org-column nil :background "#1e2023")
|
(set-face-attribute 'org-column nil :background "#1e2023")
|
||||||
;; org-columns-summary-types
|
;; org-columns-summary-types
|
||||||
|
@ -1491,14 +1494,11 @@ The built-in =effort= is used as the fourth and final homonymous GTD context (th
|
||||||
Also here are the properties for repeated tasks and a few others (see comments in code).
|
Also here are the properties for repeated tasks and a few others (see comments in code).
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(mapc (lambda (i) (add-to-list 'org-default-properties i))
|
(mapc (lambda (i) (add-to-list 'org-default-properties i))
|
||||||
;; defines a repeater group
|
; defines a repeater group
|
||||||
'("PARENT_TYPE"
|
'("PARENT_TYPE"
|
||||||
|
|
||||||
;; defines the time shift for repeater groups
|
;; defines the time shift for repeater groups
|
||||||
|
|
||||||
"TIME_SHIFT"
|
"TIME_SHIFT"
|
||||||
;; assigns another person/entity to a task (experimental)
|
|
||||||
|
|
||||||
"DELEGATE"
|
|
||||||
|
|
||||||
;; defines a goal
|
;; defines a goal
|
||||||
"GOAL"
|
"GOAL"
|
||||||
|
|
Loading…
Reference in New Issue