From mboxrd@z Thu Jan 1 00:00:00 1970 From: Austin Frank Subject: Re: POLL: the 40 variables project Date: Thu, 29 Jan 2009 23:46:27 -0500 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0630235585==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSlHO-0001o0-V8 for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 23:46:59 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSlHM-0001nl-EE for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 23:46:57 -0500 Received: from [199.232.76.173] (port=35472 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSlHM-0001nh-6T for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 23:46:56 -0500 Received: from main.gmane.org ([80.91.229.2]:50138 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 1LSlHL-0004FU-9U for emacs-orgmode@gnu.org; Thu, 29 Jan 2009 23:46:55 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LSlHJ-00013Q-EL for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 04:46:53 +0000 Received: from cpe-74-69-93-157.rochester.res.rr.com ([74.69.93.157]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jan 2009 04:46:53 +0000 Received: from austin.frank by cpe-74-69-93-157.rochester.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jan 2009 04:46:53 +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 --===============0630235585== Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" --=-=-= Content-Transfer-Encoding: quoted-printable On Thu, Jan 29 2009, Carsten Dominik wrote: > - 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. I have four org config files: org-config.el, org-config-remember.el, org-config-latex.el, and org-config-publish. At the beginning of org-config.el I load the other three. From=20org-config.el: =2D-8<---------------cut here---------------start------------->8--- (add-hook 'org-mode-hook (lambda () (imenu-add-to-menubar "Imenu") (local-set-key "\M-I" 'org-toggle-iimage-in-org))) ;;; general org functionality tweaks (setq org-completion-use-ido t) ;;; customized list and outline behaviors (setq org-empty-line-terminates-plain-lists t org-log-state-notes-insert-after-drawers t org-hide-leading-stars t) ;;; agenda customization (setq org-agenda-files '("~/org/")) (setq org-agenda-window-setup 'other-frame org-agenda-include-diary 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-skip-timestamp-if-done t org-agenda-start-on-weekday nil org-stuck-projects '("+LEVEL=3D2+CATEGORY=3D\"PROJ\"|+CATEGORY=3D\"TASK\"/-DONE-CANCELED" ("NEXT" "WAITING") nil "") org-agenda-custom-commands '(("n" "NEXT items" todo "NEXT") ("w" "WAITING items" todo "WAITING") ("h" "at Home" tags "@CASTLE|@ERRANDS|@WEGMANS") ("w" "at Work" tags "@LAB|@OFFICE") ("j" "Just Todos" todo "TODO") ("r" todo "TO-READ") ("z" todo "TO-SUMMARIZE") ("o" todo "TO-NOTE") ("f" todo "TO-FILE") ("p" "All reading tasks" ((todo "TO-READ") (todo "TO-SUMMARIZE") (todo "TO-NOTE") (todo "TO-FILE"))))) (add-hook 'org-agenda-mode-hook '(lambda () (hl-line-mode 1)))=20 ;;; notes (setq org-default-notes-file "~/notes.org" org-reverse-note-order t) ;;; org-mairix (setq org-mairix-gnus-results-group 'nnmairix-default-group org-mairix-gnus-select-display-group-function) ;;; GTD setup (setq org-todo-keywords '((sequence "TODO(t)" "NEXT(n)" "WAITING(w@/!)" "|" "DONE(d!)" "SOMEDAY(s)= ") (sequence "TO-FIND(l)" "TO-READ(r)" "READ-NEXT(x)" "TO-SUMMARIZE(z)" "TO= -NOTE(o)" "TO-FILE(f)" "|" "READ(e!)") (sequence "|" "CANCELED(c@/!)"))) (setq org-log-done t org-fast-tag-selection-single-key 'expert org-tags-match-list-sublevels t org-use-fast-todo-selection t org-fast-tag-selection-include-todo t) (defun org-toggle-iimage-in-org () "Display images in your org file" (interactive) (if (face-underline-p 'org-link) (set-face-underline-p 'org-link nil) (set-face-underline-p 'org-link t)) (iimage-mode)) ;; sometimes we need IDs? (setq org-id-method 'uuidgen) ;; moving items (setq org-refile-targets '((org-agenda-files . (:maxlevel . 3))) org-refile-use-outline-path 'file) =2D-8<---------------cut here---------------end--------------->8--- =20=20=20 From=20org-remember.el: =2D-8<---------------cut here---------------start------------->8--- ;; moving tasks (setq org-remember-use-refile-when-interactive t) ;; remember (setq org-remember-store-without-prompt t org-remember-default-headline "Unfiled" org-remember-templates '(("todo" ?t "* TODO %? %^G\n CREATED: %u\n%a\n" "~/org/todo.org" "Unscheduled tasks") ("deadline" ?d "* TODO %? %^G\n DEADLINE: %^T\nCREATED: %u\n%a\n" "~/org/todo.org" "Unscheduled tasks") ("standing" ?s "* %?\n CREATED: %u\n%^T\n%a\n" "~/org/todo.org" "Standing obligations") ("event" ?e "* %? %^G\n CREATED: %u\n%^T\n%a\n" "~/org/todo.org" "One-time events") ("project todo" ?p "* TODO %? %^G\n CREATED: %u\n%a\n" "~/org/projects.org") ("note" ?n "* %u %? %^G" "~/org/notes.org" "Unfiled Notes") ("to-read" ?r "* TO-READ %a\n** Details\n%:author (%:year). %:title. In %:journal= , %:pages.\n\n" "~/org/todo.org" "Reading") ("music" ?m "* %^{Song} by %^{Artist} on %^{Album}\n %U %?%!%&" "~/org/notes.org" "Music"))) =2D-8<---------------cut here---------------end--------------->8--- org-config-latex.el sets org-export-latex-classes, but I never actually use the classes I defined now that there are #+ directives for LaTeX export. org-config-publish.el sets org-publish-project-alist, and =2D-8<---------------cut here---------------start------------->8--- (setq org-export-with-toc nil org-export-with-section-numbers nil) =2D-8<---------------cut here---------------end--------------->8--- Thanks, /au =2D-=20 Austin Frank http://aufrank.net GPG Public Key (D7398C2F): http://aufrank.net/personal.asc --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Darwin) iEYEARECAAYFAkmChiQACgkQlHMl2/XbR4EFPgCgilrjQuEpXOclyUZoiSwBPWjP qvgAoKtxoYjjIwUGnKdAc6ZUj6flBdxf =UP/S -----END PGP SIGNATURE----- --=-=-=-- --===============0630235585== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0630235585==--