emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Re: Org mode and emacs email


From: Dan Davison
Subject: Re: [Orgmode] Re: Org mode and emacs email
Date: Tue, 30 Mar 2010 14:34:57 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

Henri-Paul Indiogine <address@hidden> writes:

> Dan Davison <address@hidden> writes:
>> http://www.princeton.edu/~ddavison/gnus.png)
>
> Thanks for the .gnus code.  Actually, I do not use .gnus and place all
> in .emacs but I do not think that matters.
>
> I run Ubuntu Karmic + Gnu Emacs 23.  Both updated
>
> Anyway, now my summary buffer looks very much like the image that you placed
> on-line. However I have some differences:
>
> 1. I do not have the arrows.  Does that have to do with some unicode
> settings that I may have to change?

Ah, sorry, I think I should have included the following two variable
settings:

(setq gnus-thread-sort-functions
      '(gnus-thread-sort-by-number
        gnus-thread-sort-by-most-recent-date))

(setq gnus-summary-thread-gathering-function
      'gnus-gather-threads-by-references)

Does that do it?

[...]

> 3. There are also color differences:  I do not have the dates colored
> blue as you have.  My subject lines are colored green, red, white and
> blue according to the marks that they have.  I find that useful and
> would like to keep those colors.

These settings don't alter the faces, just the text. The colours in my
image are whatever color-theme-charcoal-black gave me (in the
color-themes package.)

Dan

So the full settings, including the ones I originally posted are:


--8<---------------cut here---------------start------------->8---
(setq gnus-thread-sort-functions
      '(gnus-thread-sort-by-number
        gnus-thread-sort-by-most-recent-date))

(setq gnus-summary-thread-gathering-function
      'gnus-gather-threads-by-references)

(setq gnus-summary-line-format
      (concat
       "%0{%U%R%z%}"
       "%3{│%}" "%1{%d%}" "%3{│%}" ;; date
       "  "
       "%4{%-20,20f%}"               ;; name
       "  "
       "%3{│%}"
       " "
       "%1{%B%}"
       "%s\n"))
(setq gnus-summary-display-arrow t)
;; 
http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a673a74356e7141f
(when window-system
  (setq gnus-sum-thread-tree-indent "  ")
  (setq gnus-sum-thread-tree-root "") ;; "● ")
  (setq gnus-sum-thread-tree-false-root "") ;; "◯ ")
  (setq gnus-sum-thread-tree-single-indent "") ;; "◎ ")
  (setq gnus-sum-thread-tree-vertical        "│")
  (setq gnus-sum-thread-tree-leaf-with-other "├─► ")
  (setq gnus-sum-thread-tree-single-leaf     "╰─► "))
--8<---------------cut here---------------end--------------->8---


>
> Thanks,





reply via email to

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