summary refs log tree commit diff
path: root/emacs/custom/fcuny-edit.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-22 06:42:07 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-22 06:42:07 -0700
commite4796c4512bb839b7ddfdcd723ea7eee34ee1171 (patch)
treed5386106959098901868efa476b580fc48c6dff0 /emacs/custom/fcuny-edit.el
parentvars: make flymake happy (diff)
downloademacs.d-e4796c4512bb839b7ddfdcd723ea7eee34ee1171.tar.gz
edit: make flymake happy
Diffstat (limited to 'emacs/custom/fcuny-edit.el')
-rw-r--r--emacs/custom/fcuny-edit.el12
1 files changed, 10 insertions, 2 deletions
diff --git a/emacs/custom/fcuny-edit.el b/emacs/custom/fcuny-edit.el
index 0da6c86..d40fd06 100644
--- a/emacs/custom/fcuny-edit.el
+++ b/emacs/custom/fcuny-edit.el
@@ -1,7 +1,14 @@
+;;; fcuny-edit.el --- Configure parts related to editing
+;;; Commentary:
+;;; Code:
+
+(require 'use-package)
+
 (use-package autorevert
+  :custom
+  (global-auto-revert-non-file-buffers t)
+  (auto-revert-verbose nil)
   :config
-  (setq global-auto-revert-non-file-buffers t)
-  (setq auto-revert-verbose nil)
   (global-auto-revert-mode t))
 
 (use-package whitespace
@@ -42,3 +49,4 @@
 (setq view-read-only t)
 
 (provide 'fcuny-edit)
+;;; fcuny-edit.el ends here