From fa68b2fc203cc1825d964cc6539dc0cdfc930085 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Fri, 12 Jul 2024 10:11:53 -0400 Subject: [PATCH] Add customfile and use-short-answers --- init.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 1849004..d302902 100644 --- a/init.el +++ b/init.el @@ -53,6 +53,11 @@ (eval-when-compile (require 'use-package)) +;;; Cus-edit +(setq custom-file + (expand-file-name "custom.el" + minimal-emacs--default-user-emacs-directory)) + ;;; Files ;; Do not auto-disable auto-save after deleting large chunks of text. The ;; purpose of auto-save is to provide a failsafe, and disabling it @@ -76,9 +81,9 @@ ;;; Subr ;; Allow for shorter responses: "y" for yes and "n" for no. +(setq use-short-answers t) (defalias #'yes-or-no-p 'y-or-n-p) -;; Never show the hello file -(defalias #'view-hello-file #'ignore) +(defalias #'view-hello-file #'ignore) ; Never show the hello file ;;; Mule-util (setq truncate-string-ellipsis "…")