Fix some comments for `outline-mode'

Still need to do the rest of init.el and early-init.el, and I suppose acdw*.el.
This commit is contained in:
Case Duckworth 2021-04-10 14:28:31 -05:00
parent 5f45147ca5
commit b5e4759c6e
1 changed files with 6 additions and 6 deletions

12
init.el
View File

@ -7,18 +7,18 @@
;; This file is NOT part of GNU Emacs.
;;;- License:
;;; License:
;; Everyone is permitted to do whatever with this software, without
;; limitation. This software comes without any warranty whatsoever,
;; but with two pieces of advice:
;; - Don't hurt yourself.
;; - Make good choices.
;;;- Code:
;;; Code:
;; Necessary packages
;;; Necessary packages
;; `setup'
;;; `setup'
(progn
(straight-use-package '(setup :host nil
:repo "https://git.sr.ht/~zge/setup"))
@ -43,14 +43,14 @@
,(if (stringp key) (kbd key) key)
#',command))))
;; `no-littering'
;;; `no-littering'
(setup (:straight no-littering)
(:option no-littering-etc-directory (acdw/dir)
no-littering-var-directory (acdw/dir))
(require 'no-littering))
;; Good defaults
;;; Good defaults
(defmacro setc (&rest args)
"Customize user options using ARGS like `setq'."