home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 56af01b7e916007014d6f3def09018935fb44955
parent deaa958b3814567b9ff4b64b76fe9c6608e4322a
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue, 18 Aug 2020 13:02:25 +0200

tools/emacs: some gnus updates

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-org.el | 2+-
Mtools/emacs/config/config-projects.el | 4+++-
Mtools/gnus/init.el | 12+++++++-----
3 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/tools/emacs/config/config-org.el b/tools/emacs/config/config-org.el @@ -1,4 +1,4 @@ -;;; config-org.el --- -*- lexical-binding: t -*- +;;; config-org.el --- -*- lexical-binding: t; -*- ;;; Commentary: ;;; Configuration of orgmode. ;;; Code: diff --git a/tools/emacs/config/config-projects.el b/tools/emacs/config/config-projects.el @@ -1,8 +1,10 @@ ;;; config-projects.el --- -*- lexical-binding: t; -*- ;;; Commentary: ;;; Project related configuration. -;;; Using projectile now, might use projects later +;;; This is mainly using projectile now, but built-in projects module seems promising for long-term. ;;; Code: + + (use-package projectile :commands (projectile-ack diff --git a/tools/gnus/init.el b/tools/gnus/init.el @@ -144,11 +144,13 @@ (t . "%Y-%m-%d %R"))) (setq gnus-summary-line-format "%U%R%z %-16,16&user-date; %4L:%-30,30f %B%S\n") (setq gnus-summary-mode-line-format "Gnus: %p (%U)") - (setq gnus-sum-thread-tree-false-root "") - (setq gnus-sum-thread-tree-indent " ") - (setq gnus-sum-thread-tree-leaf-with-other "├─➤ ") - (setq gnus-sum-thread-tree-root "") - (setq gnus-sum-thread-tree-single-leaf "└─➤ ") + (setq gnus-sum-thread-tree-false-root "─┬➤") + (setq gnus-sum-thread-tree-indent " ") + (setq gnus-sum-thread-tree-single-indent "") + (setq gnus-sum-thread-tree-leaf-with-other "├─➤") + (setq gnus-sum-thread-tree-root "· ") + (setq gnus-sum-thread-tree-single-leaf "└─➤") + (setq gnus-sum-thread-tree-vertical "│") :hook (gnus-summary-exit-hook . gnus-topic-sort-groups-by-alphabet)