浏览代码

~/.emacs.d: make the initial buffer a text buffer

e.g. (try to) write more.

thanks, internet: http://emacsredux.com/blog/2014/07/25/configure-the-scratch-buffers-mode/
Lucas Stadler 11 年之前
父节点
当前提交
aa4e4031a7
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      .emacs.d/init.el

+ 3 - 0
.emacs.d/init.el

@ -1,6 +1,9 @@
1 1
; Mhh, let's see where this goes. (I hope I don't grow a beard.)
2 2
(load "~/.emacs.d/better-defaults")
3 3
4
(setq initial-major-mode 'text-mode)
5
(setq initial-scratch-message "<3")
6
4 7
(setq auto-save-file-name-transforms
5 8
      `((".*" ,(concat user-emacs-directory "backups"))))
6 9