From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Schmitt Subject: Re: POLL: the 40 variables project Date: Fri, 30 Jan 2009 12:33:41 +0100 Message-ID: <4982E595.1000808@cs.tu-berlin.de> References: <20090130091800.B54F32868C@mailhost.cs.tu-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSreU-0006px-Nu for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 06:35:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSreS-0006pH-Vh for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 06:35:14 -0500 Received: from [199.232.76.173] (port=42752 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSreS-0006pD-R4 for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 06:35:12 -0500 Received: from mail.cs.tu-berlin.de ([130.149.17.13]:35316) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LSreS-0001LL-EY for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 06:35:12 -0500 Received: from localhost (localhost [127.0.0.1]) by localhost-12225.cs.tu-berlin.de (Postfix) with ESMTP id 7019D27323 for ; Fri, 30 Jan 2009 12:35:07 +0100 (MET) In-Reply-To: <20090130091800.B54F32868C@mailhost.cs.tu-berlin.de> 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 Here's my customization: in todo.org: #+STARTUP: content #+STARTUP: lognotedone #+SEQ_TODO: TODO(t@) STARTED(s) WAITING(w@/@) DELEGATED(d@) | DONE(D@) DEFERRED(F@) CANCELLED(C@) #+SEQ_TODO: APPT(a) RESCHEDULE(r@) | APPTDONE(A@) APPTCANCELLED(P@) in .emacs: (custom-set-variables '(org-agenda-files (quote ("~/orga/org/todo.org"))) '(org-agenda-include-diary nil) '(org-agenda-skip-deadline-if-done t) '(org-agenda-skip-scheduled-if-done t) '(org-agenda-skip-unavailable-files t) '(org-agenda-start-on-weekday nil) '(org-attach-file-list-property nil) '(org-default-notes-file "~/orga/org/notes.org") '(org-directory "~/orga/org/") '(org-edit-timestamp-down-means-later t) '(org-export-with-LaTeX-fragments t) '(org-fast-tag-selection-single-key (quote expert)) '(org-hide-leading-stars t) '(org-id-method (quote uuidgen)) '(org-log-done t) '(org-log-done-with-time nil) '(org-refile-use-outline-path t) '(org-remember-templates (quote (("todo" 116 "* TODO %? %u" "~/orga/org/todo.org" "Tasks" nil)))) '(org-reverse-note-order (quote (("todo" . t)))) '(org-special-ctrl-a t) '(org-special-ctrl-a/e t) '(org-startup-folded (quote content)) '(org-time-stamp-rounding-minutes 5) '(org-todo-keywords (quote ("TODO" "WAITING" "DONE"))) '(org-use-fast-todo-selection t)))