Commit 56af01b7e916

Vincent Demeester <vincent@sbr.pm>
2020-08-18 13:02:25
tools/emacs: some gnus updates
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent deaa958
Changed files (3)
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:
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
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)