summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el21
1 files changed, 21 insertions, 0 deletions
diff --git a/init.el b/init.el
index c0e0c71..f248d7e 100644
--- a/init.el
+++ b/init.el
@@ -162,6 +162,27 @@ no effect."
(use-package "rainbow-mode" 'rainbow-mode)
+;;; LIN Is Noticeable
+
+;; This is a package by Protesilaos.
+
+(use-package "protesilaos/lin" 'lin
+ (let ((list-of-hooks '(git-rebase-mode-hook
+ ibuffer-mode-hook
+ magit-log-mode-hook
+ notmuch-search-mode-hook
+ notmuch-tree-mode-hook
+ org-agenda-mode-hook
+ tabulated-list-mode-hook
+ blist-mode-hook)))
+ (mapc
+ (lambda (hook)
+ (cond
+ ;; don't do anything if the variable is not bounded.
+ ((boundp hook)
+ (add-hook hook #'lin-mode))))
+ list-of-hooks)))
+
;;; outline
(load-after-function durand-maybe-enable-outline "outline-conf.el"