From 7312722d8770f13797584025e1006ef9b792996d Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Mon, 6 May 2024 09:09:32 +1200 Subject: [PATCH] emacs: set compilation-scroll-output and wdired-allow-to-change-permissions --- .emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c2c1469..abfbd6a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -91,6 +91,10 @@ One will be created if none exist." (add-hook 'nroff-mode-hook 'auto-fill-mode) (add-hook 'nroff-mode-hook 'variable-pitch-mode) +;; other variables +(setq compilation-scroll-output t + wdired-allow-to-change-permissions t) + ;; file extensions (add-to-list 'auto-mode-alist '("\\.yuck\\'" . lisp-mode)) (add-to-list 'auto-mode-alist '("\\.eml\\'" . mail-mode))