diff options
| author | KΓ©vin Le Gouguec <kevin.legouguec@gmail.com> | 2020-06-24 22:32:22 +0200 |
|---|---|---|
| committer | KΓ©vin Le Gouguec <kevin.legouguec@gmail.com> | 2020-06-24 22:32:22 +0200 |
| commit | 1cd75e2e37a4757557e79ca8bc667d654d4e246b (patch) | |
| tree | 5bd3d44edc5cb6a5e3138e01fd8ae7fe838e6e3c /.gnus | |
| parent | 3890fd2d0c603b3421cf6d21212c910f8803af32 (diff) | |
| download | dotfiles-1cd75e2e37a4757557e79ca8bc667d654d4e246b.tar.xz | |
Tweak Gnus summary
- get rid of diamonds
- don't use sender name if I'm the sender
- fix off-by-one error when humanizing dates
Diffstat (limited to '.gnus')
| -rw-r--r-- | .gnus | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -15,12 +15,14 @@ gnus-secondary-select-methods '((nntp "archive.lwn.net") (nntp "news.gmane.io")) - gnus-summary-line-format "%*%U%R %-16,16&user-date; %B%-23,23n %s\n" - gnus-summary-dummy-line-format " ββ %S\n" + gnus-summary-line-format "%*%U%R %-16,16&user-date; %B%-23,23f %s\n" + gnus-summary-newsgroup-prefix "me β " + gnus-summary-to-prefix "me β " + gnus-summary-dummy-line-format " β %S\n" gnus-summary-make-false-root 'dummy - gnus-sum-thread-tree-root "ββ " - gnus-sum-thread-tree-false-root "ββ " - gnus-sum-thread-tree-single-indent " β " + gnus-sum-thread-tree-root "β " + gnus-sum-thread-tree-false-root "β¬ " + gnus-sum-thread-tree-single-indent " " gnus-sum-thread-tree-indent " " gnus-sum-thread-tree-single-leaf "β°βΊ " gnus-sum-thread-tree-leaf-with-other "ββΊ " @@ -33,7 +35,7 @@ . "%H:%M") ((+ 86400 (gnus-seconds-today)) . "Yesterday %H:%M") - (604800 + ((* 6 86400) . "%a %H:%M") ((gnus-seconds-month) . "%a %d") |
