From 778af6876c6a1f8d200bb6b69ebc519320a3129a Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 23 Jun 2022 16:54:03 +0200 Subject: [PATCH] Turn off lock files since they don't play nice with npm --- config.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 5b3778b..4628211 100644 --- a/config.org +++ b/config.org @@ -76,10 +76,13 @@ Use a sane date style. (setq calendar-date-style 'european) #+end_src -** Turn off backup files +** Turn off backup and lock files + +Lock files don't play nice with npm. #+begin_src emacs-lisp (setq-default backup-inhibited t) +(setq create-lockfiles nil) #+end_src ** Performance tweaks