From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: POLL: the 40 variables project Date: Fri, 30 Jan 2009 08:36:45 -0800 Message-ID: <874ozg21k2.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSwMH-0006Bb-JK for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 11:36:45 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSwMG-0006Ai-LE for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 11:36:45 -0500 Received: from [199.232.76.173] (port=48794 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSwMG-0006AY-F3 for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 11:36:44 -0500 Received: from wa-out-1112.google.com ([209.85.146.177]:54000) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LSwMF-0008BH-Ae for emacs-orgmode@gnu.org; Fri, 30 Jan 2009 11:36:43 -0500 Received: by wa-out-1112.google.com with SMTP id k17so248812waf.26 for ; Fri, 30 Jan 2009 08:36:42 -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: Carsten Dominik Cc: emacs org-mode mailing list --=-=-= Carsten Dominik writes: > 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? > Great idea, I am interested to see the compiled results! Cheers -- Eric --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=eschulte-org-customizations.el Content-Transfer-Encoding: quoted-printable ;;;; org custom variables (setq org-completion-use-ido t) (setq org-ditaa-jar-path "~/src/org/org-mode/contrib/scripts/ditaa.jar") (setq org-list-two-spaces-after-bullet-regexp ")") (setq iimage-mode-image-search-path (expand-file-name "~/")) (setq org-link-abbrev-alist '(("wiki" . "http://en.wikipedia.org/wiki/Search?search=3D") ("math" . "http://mathworld.wolfram.com/%s.html") ("google" . "http://www.google.com/search?q=3D"))) (setq org-agenda-window-setup 'current-window org-agenda-ndays 7 org-agenda-custom-commands '(("w" "work" ((tags-todo "mitre") (agenda) )) ("h" "home" ((agenda) (tags-todo "-mitre") )))) (setq org-agenda-include-diary t) (setq org-export-html-infojs-setup "") (setq org-export-with-LaTeX-fragments t org-export-html-table-tag "" ) ;; set these up when getting my icalendar export working w/google-calendar (setq org-combined-agenda-icalendar-file "~/docs/personal/schulte.ics") (setq org-icalendar-force-UID t) (setq org-icalendar-store-UID t) (setq org-agenda-files (list "~/Desktop/todo")) ;;;; key bindings ;; global (global-set-key "\C-c L" 'org-insert-link-global) (global-set-key "\C-c o" 'org-open-at-point-global) (global-set-key "\C-c'" 'org-cycle-agenda-files) (global-set-key "\C-c\C-l" 'org-store-link) (global-set-key "\C-c\C-a" 'org-agenda) (global-set-key "\C-ca" 'org-agenda) ;; org-mode (local-set-key "\M-\C-n" 'outline-next-visible-heading) (local-set-key "\M-\C-p" 'outline-previous-visible-heading) (local-set-key "\M-\C-d" 'schulte/org-drop-tofile) (local-set-key "\M-\C-b" 'schulte/org-drop-as-bib) (local-set-key "\C-ct" 'org-todo) (local-set-key "\M-\C-w" 'org-table-copy-region) (local-set-key "\M-\C-y" 'org-table-paste-rectangle) (local-set-key "\M-\C-l" 'org-table-sort-lines) (local-set-key "\M-\C-g" 'org-plot/gnuplot) (local-set-key "\M-I" 'org-toggle-iimage-in-org) (local-set-key "\C-y" 'yank) (setq yas/trigger-key [tab]) --=-=-= 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 --=-=-=--