diff options
author | Case Duckworth | 2021-04-12 12:53:22 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-12 12:53:22 -0500 |
commit | ae35c20747666cd4386e7c67f4f175c9f57903ec (patch) | |
tree | 6c66daefd219dbff2093ad247bd5f6a1efd45684 | |
parent | Set the bell to flash the mode-line (diff) | |
download | emacs-ae35c20747666cd4386e7c67f4f175c9f57903ec.tar.gz emacs-ae35c20747666cd4386e7c67f4f175c9f57903ec.zip |
Customize `customize'
-rw-r--r-- | init.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/init.el b/init.el index 1348bdc..4aa5165 100644 --- a/init.el +++ b/init.el | |||
@@ -163,8 +163,7 @@ | |||
163 | '((file (styles . (partial-completion))))) | 163 | '((file (styles . (partial-completion))))) |
164 | 164 | ||
165 | ;; Etc. | 165 | ;; Etc. |
166 | (:option custom-file (acdw/dir "custom.el") | 166 | (:option inhibit-startup-screen t |
167 | inhibit-startup-screen t | ||
168 | initial-buffer-choice t | 167 | initial-buffer-choice t |
169 | initial-scratch-message (concat ";; Howdy, " | 168 | initial-scratch-message (concat ";; Howdy, " |
170 | (nth 0 (split-string | 169 | (nth 0 (split-string |
@@ -253,6 +252,13 @@ | |||
253 | (add-hook 'after-save-hook | 252 | (add-hook 'after-save-hook |
254 | #'executable-make-buffer-file-executable-if-script-p)) | 253 | #'executable-make-buffer-file-executable-if-script-p)) |
255 | 254 | ||
255 | (setup cus-edit | ||
256 | (:option custom-file (acdw/dir "custom.el") | ||
257 | custom-magic-show nil | ||
258 | custom-magic-show-button t | ||
259 | custom-unlispify-tag-names nil | ||
260 | custom-variable-default-form 'edit)) | ||
261 | |||
256 | (setup uniquify | 262 | (setup uniquify |
257 | (:option uniquify-buffer-name-style 'forward | 263 | (:option uniquify-buffer-name-style 'forward |
258 | uniquify-separator path-separator | 264 | uniquify-separator path-separator |