fix(tools/emacs): Set scratch buffer to Emacs Lisp mode
This used to be the case, but it changed to lisp-interaction-mode at some point which is incredibly annoying.
This commit is contained in:
parent
067acdbcae
commit
15ae7fadb8
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,8 @@
|
|||
whitespace-line-column 80
|
||||
default-directory "~"
|
||||
fill-column 80
|
||||
ediff-split-window-function 'split-window-horizontally)
|
||||
ediff-split-window-function 'split-window-horizontally
|
||||
initial-major-mode 'emacs-lisp-mode)
|
||||
|
||||
(add-to-list 'safe-local-variable-values '(lexical-binding . t))
|
||||
(add-to-list 'safe-local-variable-values '(whitespace-line-column . 80))
|
||||
|
|
Loading…
Reference in a new issue