about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2020-09-22 20:20:24 -0500
committerCase Duckworth2020-09-22 20:20:24 -0500
commit77053e4d8a0377057316455d1e536f0336116b14 (patch)
tree5ce143e89119d5c4d202e61012e453f5f6d551ac /init.el
parentRewrite to take advantage of outshine-mode (diff)
downloademacs-77053e4d8a0377057316455d1e536f0336116b14.tar.gz
emacs-77053e4d8a0377057316455d1e536f0336116b14.zip
Fix outshine-mode hook
Diffstat (limited to 'init.el')
-rw-r--r--init.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/init.el b/init.el index 4d5cb48..213c6bc 100644 --- a/init.el +++ b/init.el
@@ -6,7 +6,6 @@
6;; which pointed out that I could use `outline-mode' (or in my case, 6;; which pointed out that I could use `outline-mode' (or in my case,
7;; `outshine') to fold and navigate a pure-elisp `init.el'. So that's 7;; `outshine') to fold and navigate a pure-elisp `init.el'. So that's
8;; what I'm doing. 8;; what I'm doing.
9
10;;; Basic emacs config & built-in packages 9;;; Basic emacs config & built-in packages
11;;;; /Really/ basic emacs config 10;;;; /Really/ basic emacs config
12;; I /did/ use `better-defaults', but it turns out that that package 11;; I /did/ use `better-defaults', but it turns out that that package
@@ -260,7 +259,7 @@
260 ("<S-iso-lefttab>" . outshine-cycle-buffer) 259 ("<S-iso-lefttab>" . outshine-cycle-buffer)
261 ("<backtab>" . outshine-cycle-buffer)) 260 ("<backtab>" . outshine-cycle-buffer))
262 :hook 261 :hook
263 (emacs-lisp-mode . outshine-mode)) 262 (emacs-lisp-mode-hook: . outshine-mode))
264 263
265;;;;; Item selection & narrowing 264;;;;; Item selection & narrowing
266(use-package selectrum 265(use-package selectrum
@@ -750,3 +749,6 @@
750(use-package org-bullets 749(use-package org-bullets
751 :hook 750 :hook
752 (org-mode-hook . (lambda () (org-bullets-mode)))) 751 (org-mode-hook . (lambda () (org-bullets-mode))))
752
753(provide 'init)
754;;; init.el ends here