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: Martin Stemplinger
Subject: [Orgmode] Re: POLL: the 40 variables project
Date: Sat, 31 Jan 2009 14:06:08 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (windows-nt)

Hallo Carsten Dominik,

am 29.01.2009 schriebst Du in gmane.emacs.orgmode:

> 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?
>
In customize:
 '(org-agenda-files (quote ("~/Org/GTDAssesment-Daheim.org" "~/Org/gtd.org")))
 '(org-agenda-include-all-todo nil)
 '(org-agenda-include-diary t)
 '(org-export-author-info nil)
 '(org-export-html-style "<style type=\"text/css\">
  html {
        font-family: Verdana, Times, serif;
        font-size: 12pt;
  }
  .title { text-align: center; }
  .todo  { color: red; }
  .done { color: green; }
  .timestamp { color: grey }
  .timestamp-kwd { color: CadetBlue }
  .tag { display:none }
  .target { background-color: lavender; }
  pre {
        border: 1pt solid #AEBDCC;
        background-color: #F3F5F7;
        padding: 5pt;
        font-family: courier, monospace;
  }
  table { border-collapse: collapse; }
  td, th {
        vertical-align: top;
        <!--border: 1pt solid #ADB9CC;-->
  }
</style>")
 '(org-export-html-with-timestamp t)
 '(org-export-latex-classes (quote (("article" 
"\\documentclass[12pt,a4paper]{article}
\\usepackage[latin1]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{t1enc,hyperref}" ("\\section{%s}" . "\\section*{%s}") 
("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . 
"\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") 
("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report" 
"\\documentclass[12pt,a4paper]{report}
\\usepackage[latin1]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{hyperref,t1enc}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . 
"\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . 
"\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("book" 
"\\documentclass[11pt,a4paper]{book}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
\\usepackage{hyperref}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . 
"\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . 
"\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))))
 '(org-export-latex-date-format "%d. %B %Y")
 '(org-export-latex-remove-from-headlines (quote (:todo nil :priority t :tags 
t)))
 '(org-fast-tag-selection-single-key t)
 '(org-hide-leading-stars t)
 '(org-modules (quote (org-bbdb org-info org-jsinfo)))
 '(org-odd-levels-only t)
 '(org-stuck-projects (quote ("+PROJEKT" ("ANRUFE" "BESORGEN" "BÜRO" "COMPUTER" 
"DAHEIM" "LESEN" "MITNEHMEN" "WARTET") nil "")))
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(setq org-log-done t
      org-agenda-start-on-weekday nil
      org-fast-todo-selection t
      org-remember-templates
      '((?j "* %U %?\n\n  %i\n  %a" "~/Org/JOURNAL.org")
        (?i "* %^{Title}\n  %i\n  %a" "~/Org/gtd.org" "New Ideas"))
      org-agenda-custom-commands
      '(("h" "Agenda and tasks"
         ((agenda)
          (todo "ANRUFE")
          (todo "BESORGEN")
          (todo "BÜRO")
          (todo "COMPUTER")
          (todo "DAHEIM")
          (todo "ILSE")
          (todo "LESEN")
          (todo "MITNEHMEN")
          (todo "GTD")))))
(defun gtd ()
   (interactive)
   (find-file "~/Org/gtd.org"))

 (defun org-my-archive-done-tasks ()
 (interactive)
 (save-excursion
 (goto-char (point-min))
 (while (re-search-forward
 (concat "\\* " (regexp-opt org-done-keywords) " ") nil t)
 (goto-char (line-beginning-position))
 (org-archive-subtree))))
> 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
>

-- 
Gruß
Martin




reply via email to

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