Turn off lock files since they don't play nice with npm

This commit is contained in:
Marcel Kapfer 2022-06-23 16:54:03 +02:00
parent 6762876fd6
commit 778af6876c
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 4 additions and 1 deletions

View File

@ -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