From b9ed4eb440b2fa4481bf71c9d0d77c107bfd629f Mon Sep 17 00:00:00 2001 From: toctan Date: Mon, 26 May 2014 23:47:13 +0800 Subject: [PATCH 1/2] Ignore pcache directory http://github.com/sigma/pcache pcache is used by gist.el --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 254a95e..74b5863 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ projectile-bookmarks.eld session* .cask tramp +/var/pcache From 93d73e0f934971c866e670891c2ea6fb04920061 Mon Sep 17 00:00:00 2001 From: toctan Date: Tue, 27 May 2014 00:05:29 +0800 Subject: [PATCH 2/2] Newline at end of file --- core/prelude-editor.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/prelude-editor.el b/core/prelude-editor.el index 0ffccbb..3c31e31 100644 --- a/core/prelude-editor.el +++ b/core/prelude-editor.el @@ -45,6 +45,9 @@ (setq-default indent-tabs-mode nil) ;; don't use tabs to indent (setq-default tab-width 8) ;; but maintain correct appearance +;; Newline at end of file +(setq require-final-newline t) + ;; delete the selection with a keypress (delete-selection-mode t)