summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-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