From e3f273b87d0e77e32d891e84512492475906f440 Mon Sep 17 00:00:00 2001 From: Jack Foltz Date: Wed, 12 Dec 2018 16:57:04 -0500 Subject: [PATCH] Update emacs to not make lockfiles --- lain/.emacs.d/config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lain/.emacs.d/config.org b/lain/.emacs.d/config.org index 299c5c4..d1b0129 100644 --- a/lain/.emacs.d/config.org +++ b/lain/.emacs.d/config.org @@ -87,7 +87,7 @@ Make yes-or-no prompts ask for y or n instead (setq indent-line-function 'insert-tab) #+END_SRC -** Keep backup files out of the way +** Keep backup files and lockfiles out of the way By default, emacs makes files like =file~= and =#file#= and clutters up my projects. Instead, store them in =/tmp=! #+BEGIN_SRC emacs-lisp @@ -95,6 +95,7 @@ my projects. Instead, store them in =/tmp=! `((".*" . ,temporary-file-directory))) (setq auto-save-file-name-transforms `((".*" ,temporary-file-directory t))) +(setq create-lockfiles nil) #+END_SRC ** Customize the terminal Use fish shell in ansi-term