From e8b206ef94165580315e88e78e6c4ed813b436c4 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 22 Oct 2020 19:27:23 +0200 Subject: [PATCH] [Emacs] Change the default mode for the scratch buffer to Elisp --- org/config/emacs.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org/config/emacs.org b/org/config/emacs.org index 92e7690..3222ff8 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -814,10 +814,10 @@ #+END_SRC Similarly, the below variable sets the default mode for the scratch buffer. - Its default value is ~text-mode~, but I also set it to use ~org-mode~ by + Its default value is ~text-mode~, but I set it to use ~emacs-lisp-mode~ by default. #+BEGIN_SRC emacs-lisp - (setq-default dotspacemacs-scratch-mode 'org-mode) + (setq-default dotspacemacs-scratch-mode 'emacs-lisp-mode) #+END_SRC By the way, it is possible to set a default message for the scratch buffer,