diff options
author | Case Duckworth | 2021-04-10 14:28:31 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-10 14:28:31 -0500 |
commit | b5e4759c6e180b81f06cb93d91e0a7569e9ea87a (patch) | |
tree | cc5a53babce571b0db91578e7ea44699412adf26 | |
parent | Load slime-helper.el if it exists (diff) | |
download | emacs-b5e4759c6e180b81f06cb93d91e0a7569e9ea87a.tar.gz emacs-b5e4759c6e180b81f06cb93d91e0a7569e9ea87a.zip |
Fix some comments for `outline-mode'
Still need to do the rest of init.el and early-init.el, and I suppose acdw*.el.
-rw-r--r-- | init.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/init.el b/init.el index b93f4aa..1876aa6 100644 --- a/init.el +++ b/init.el | |||
@@ -7,18 +7,18 @@ | |||
7 | 7 | ||
8 | ;; This file is NOT part of GNU Emacs. | 8 | ;; This file is NOT part of GNU Emacs. |
9 | 9 | ||
10 | ;;;- License: | 10 | ;;; License: |
11 | ;; Everyone is permitted to do whatever with this software, without | 11 | ;; Everyone is permitted to do whatever with this software, without |
12 | ;; limitation. This software comes without any warranty whatsoever, | 12 | ;; limitation. This software comes without any warranty whatsoever, |
13 | ;; but with two pieces of advice: | 13 | ;; but with two pieces of advice: |
14 | ;; - Don't hurt yourself. | 14 | ;; - Don't hurt yourself. |
15 | ;; - Make good choices. | 15 | ;; - Make good choices. |
16 | 16 | ||
17 | ;;;- Code: | 17 | ;;; Code: |
18 | 18 | ||
19 | ;; Necessary packages | 19 | ;;; Necessary packages |
20 | 20 | ||
21 | ;; `setup' | 21 | ;;; `setup' |
22 | (progn | 22 | (progn |
23 | (straight-use-package '(setup :host nil | 23 | (straight-use-package '(setup :host nil |
24 | :repo "https://git.sr.ht/~zge/setup")) | 24 | :repo "https://git.sr.ht/~zge/setup")) |
@@ -43,14 +43,14 @@ | |||
43 | ,(if (stringp key) (kbd key) key) | 43 | ,(if (stringp key) (kbd key) key) |
44 | #',command)))) | 44 | #',command)))) |
45 | 45 | ||
46 | ;; `no-littering' | 46 | ;;; `no-littering' |
47 | (setup (:straight no-littering) | 47 | (setup (:straight no-littering) |
48 | (:option no-littering-etc-directory (acdw/dir) | 48 | (:option no-littering-etc-directory (acdw/dir) |
49 | no-littering-var-directory (acdw/dir)) | 49 | no-littering-var-directory (acdw/dir)) |
50 | (require 'no-littering)) | 50 | (require 'no-littering)) |
51 | 51 | ||
52 | 52 | ||
53 | ;; Good defaults | 53 | ;;; Good defaults |
54 | 54 | ||
55 | (defmacro setc (&rest args) | 55 | (defmacro setc (&rest args) |
56 | "Customize user options using ARGS like `setq'." | 56 | "Customize user options using ARGS like `setq'." |