emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: POLL: the 40 variables project


From: Rainer Stengele
Subject: [Orgmode] Re: POLL: the 40 variables project
Date: Fri, 30 Jan 2009 13:08:54 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.17) Gecko/20080914 Lightning/0.8 Thunderbird/2.0.0.17 Mnenhy/0.7.5.666

Carsten Dominik schrieb:
> Hi,
> 
> yesterday I did this command in my org-mode git repo:
> 
>   grep defcustom lisp/*el |wc -l
> 
> and got 378 as an answer.  378 user-customizable variables,
> no kidding.
> 
> However, I bet that only about 10% of these are really used
> by more that one user :-).  So when a new users starts digging
> into Org-mode, they simply must be confused by the amount
> of variables that can be set.
> 
> So here is the idea:  I would like to find out which variables
> users actually customize.  This could be the basis
> for a great article on Worg, describing just these selected
> variables.
> 
> In addition, I could make a special customization group which only
> contains those variables (Emacs allows to put a variable into several
> groups).  It would be awesome to have, and a much easier start into
> customizing Org.
> 
> So here is my question to all of you.  Could you, in reply to this
> message, list all the Org-related variables that you have customized,
> along with the values you used?
> 
> If you want to do more, I'd also love to see comments on
> 
> - why you set the variable like this
> - if you feel that the default value of that variable
>   should be different
> - Any other comments you might what to give.
> 
> Of course, if there is a volunteer who would like to organize
> this info into a Worg page, I would even be more happy ...
> 
> Thanks!
> 
> - Carsten
> 
> 
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> address@hidden
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> 

I have these: (raw copy from .emacs)

 '(org-agenda-compact-blocks t)
 '(org-agenda-files nil)
 '(org-agenda-include-diary t)
 '(org-agenda-ndays 7)
 '(org-agenda-prefix-format (quote ((agenda . "  %-12:c%?-19t% s") (timeline . 
"  % s") (todo . "
%-16:c") (tags . "  %-16:c"))))
 '(org-agenda-restore-windows-after-quit t)
 '(org-agenda-show-all-dates nil)
 '(org-agenda-skip-deadline-if-done t)
 '(org-agenda-skip-scheduled-if-done t)
 '(org-agenda-skip-timestamp-if-done t)
 '(org-agenda-sorting-strategy (quote ((agenda time-up priority-down 
category-keep) (todo
category-keep priority-down) (tags category-keep priority-down))))
 '(org-agenda-start-on-weekday nil)
 '(org-agenda-start-with-follow-mode t)
 '(org-agenda-tags-column 142)
 '(org-agenda-tags-todo-honor-ignore-options t)
 '(org-agenda-time-grid (quote ((daily today require-timed) "----------------" 
(900 1300 1600))))
 '(org-agenda-todo-ignore-deadlines t)
 '(org-agenda-todo-ignore-scheduled t)
 '(org-agenda-todo-ignore-with-date t)
 '(org-agenda-todo-keyword-format "%-8s")
 '(org-agenda-window-setup (quote current-window))
 '(org-blank-before-new-entry (quote ((heading) (plain-list-item))))
 '(org-clock-in-switch-to-state "INARBEIT")
 '(org-clock-into-drawer 6)
 '(org-columns-default-format "%50ITEM %TODO %3PRIORITY %TAGS")
 '(org-cycle-emulate-tab t)
 '(org-cycle-global-at-bob nil)
 '(org-deadline-warning-days 30)
 '(org-default-notes-file "~/org/DIPLAN.org")
 '(org-default-priority 68)
 '(org-drawers (quote ("PROPERTIES" "SETUP")))
 '(org-ellipsis "....>")
 '(org-enforce-todo-dependencies t)
 '(org-export-author-info nil)
 '(org-export-default-directory ".")
 '(org-export-default-language "de")
 '(org-export-headline-levels 5)
 '(org-export-html-style "<style type=\"text/css\">
       p { font-weight: normal; color: gray; }
       h1 { color: black; }
      .title { text-align: center; }
      .todo, .deadline { color: red; }
      .done { color: green; }
      code { font-weight: bold; color: OrangeRed; }
      pre { font-weight: bold; color: OrangeRed;  }
   </style>")
 '(org-export-mark-todo-in-toc t)
 '(org-export-preserve-breaks t)
 '(org-export-remove-timestamps-from-toc nil)
 '(org-export-with-tags nil)
 '(org-fontify-done-headline t)
 '(org-goto-interface (quote outline))
 '(org-indirect-buffer-display (quote other-window))
 '(org-log-done t)
 '(org-lowest-priority 68)
 '(org-modules (quote (org-jsinfo org-wl org2rem org-toc)))
 '(org-priority-start-cycle-with-default nil)
 '(org-refile-targets (quote ((org-agenda-files :maxlevel . 3))))
 '(org-refile-use-outline-path t)
 '(org-remember-default-headline "Stundenaufschreibung")
 '(org-remember-interactive-interface (quote outline))
 '(org-remember-store-without-prompt nil)
 '(org-remember-templates

...

 '(org-remember-use-refile-when-interactive nil)
 '(org-return-follows-link t)
 '(org-show-hierarchy-above (quote ((default . t))))
 '(org-sort-agenda-notime-is-late t)
 '(org-special-ctrl-a/e (quote reversed))
 '(org-stuck-projects (quote 
("+LEVEL=2|+LEVEL=1|+PROJEKT/-DONE|-DELEGATED|-CANCELED" ("TODO"
"INARBEIT") ("IGNORE" "SOMETIME_MAYBE") "")))
 '(org-tab-follows-link t)
 '(org-tags-column 132)
 '(org-timeline-show-empty-dates nil)
 '(org-todo-keywords (quote ((sequence "TODO" "INARBEIT" "WARTEN" "|" "DONE" 
"CANCELED" "DELEGATED"))))
 '(org-use-property-inheritance nil)
 '(org-use-tag-inheritance nil)

Rainer





reply via email to

[Prev in Thread] Current Thread [Next in Thread]