From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ulf Stegemann Subject: Re: POLL: the 40 variables project Date: Fri, 30 Jan 2009 09:17:00 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSoYt-0006rn-Vx for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 03:17:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSoYs-0006rN-Ln for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 03:17:15 -0500 Received: from [199.232.76.173] (port=46396 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSoYs-0006rH-Hv for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 03:17:14 -0500 Received: from main.gmane.org ([80.91.229.2]:54206 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LSoYs-0004hi-6i for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 03:17:14 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LSoYq-00088n-0B for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 08:17:12 +0000 Received: from london.zeitform.net ([146.140.213.100]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jan 2009 08:17:11 +0000 Received: from ulf-news by london.zeitform.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jan 2009 08:17:11 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Carsten Dominik wrote: > 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? apart from some face definitions and things like export or agenda view customisations that really everybody will customise when he/she needs it, here you are: --8<--------------------------snip-------------------------->8--- (defconst emacs-org-dir (expand-file-name "org/" emacs-files-dir) "Org-mode files directory") (setq org-agenda-files (list (expand-file-name "todo.org" emacs-org-dir) (expand-file-name "notes.org" emacs-org-dir) )) (setq org-log-done 'time org-use-fast-todo-selection t org-fast-tag-selection-include-todo t org-agenda-ndays 7 org-deadline-warning-days 14 org-agenda-show-all-dates t org-agenda-skip-deadline-if-done t org-agenda-skip-scheduled-if-done t org-agenda-start-on-weekday 1 org-reverse-note-order nil org-return-follows-link t org-support-shift-select nil org-enforce-todo-dependencies t org-agenda-dim-blocked-tasks t org-fast-tag-selection-single-key t org-agenda-restore-windows-after-quit t org-agenda-window-setup (quote current-window) org-email-link-description-format "Email %c: %.50s" org-blank-before-new-entry (quote ((heading . auto) (plain-list-item . auto))) org-remember-store-without-prompt t org-remember-templates '(("Tasks" ?t "* TODO %?\n %i\n %a" "todo.org" "Tasks") ("Notes" ?n "* %u %?" "notes.org" "Notes")) remember-annotation-functions '(org-remember-annotation) remember-handler-functions '(org-remember-handler) org-global-properties '(("Effort_ALL" . "0 0:05 0:15 0:30 0:45 1:00 1:30 2:00 3:00 4:00 5:00 6:00 7:00 8:00")) org-columns-default-format "%PRIORITY %45ITEM(Task) %TODO %Effort(Est.){:} %CLOCKSUM(Time)" org-agenda-columns-add-appointments-to-effort-sum t org-return-follows-link t org-special-ctrl-a/e t org-special-ctrl-k t org-tab-follows-link nil org-tag-faces nil org-agenda-restore-windows-after-quit t org-agenda-window-setup 'current-window org-archive-save-context-info '(time file category todo priority itags olpath ltags) org-blank-before-new-entry ((heading . auto) (plain-list-item . auto)) org-clock-in-switch-to-state "STARTED" org-clock-out-remove-zero-time-clocks t org-email-link-description-format "Email %c: %.30s" nil nil "n") --8<--------------------------snap-------------------------->8--- Ulf