From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Sebold Subject: Re: POLL: the 40 variables project Date: Wed, 04 Feb 2009 09:29:40 -0600 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LUjhD-00030d-Rn for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 10:29:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LUjhB-0002yg-W1 for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 10:29:47 -0500 Received: from [199.232.76.173] (port=50928 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LUjhB-0002yR-QC for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 10:29:45 -0500 Received: from rv-out-0708.google.com ([209.85.198.246]:41092) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LUjhB-0007Gd-G0 for emacs-orgmode@gnu.org; Wed, 04 Feb 2009 10:29:45 -0500 Received: by rv-out-0708.google.com with SMTP id k29so3017096rvb.6 for ; Wed, 04 Feb 2009 07:29:43 -0800 (PST) In-Reply-To: (Carsten Dominik's message of "Thu\, 29 Jan 2009 09\:49\:21 +0100") 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 On 29 Jan 2009, 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? Hopefully this isn't too late. Using customize, here is what I have: (org-agenda-ndays 1) ; I like daily agenda (org-agenda-skip-deadline-if-done t) (org-agenda-skip-scheduled-if-done t) (org-agenda-use-time-grid nil) ; No need for the scheduling stuff (org-deadline-warning-days 3) ; This covers a weekend, usually Using setq(), here is what I have: (setq org-directory "~/org/") (setq org-default-notes-file (concat org-directory "/process.org")) (setq org-todo-keywords '( (sequence "INBOX(i)" "TICKLER(t!)" "|" "FILE(f@)" "CANCELED(k@)") (sequence "TODO" "WAITING" "VERIFY" "|" "DONE" "REASSIGNED") (sequence "DAILY(d)" "|" "DONEDLY" "UNSCHEDDLY(D@)") (sequence "WEEKLY(e)" "|" "DONEWKLY" "UNSCHEDWKLY(E@)") (sequence "MONTHLY(m)" "|" "DONEMNTHLY" "UNSCHEDMNTHLY(M@)") (sequence "APPT" "RESCHEDULE(s@)" "|" "APPTPAST" "APPTCANCELED(n@)") (sequence "REQUEST(r!)" "REQWAITING(w@/!)" "REQVERIFY(v)" "|" "REQCLOSED(c!)" "REQREASSIGNED(a@)") (sequence "PROJECT(P!)" "PROJWAITING(W@/!)" "PROJVERIFY(V)" "|" "PROJCLOSED(C!)" "PROJREASSIGNED(A@)") )) ; I actually prune these regularly; right now they're all in ; use (setq org-agenda-custom-commands '(("W" tags-todo "+work+lcms") ("w" agenda "LCMS Agenda" ((org-agenda-files '("~/org/lcms.org")))))) ; "LCMS" is where I work, just so you know -- Charles Sebold 4th of February, 2009 GNU Emacs 22.3.1 (i386-mingw-nt5.1.2600) | Gnus v5.11 | org-mode 6.21trans