Turn off lock files since they don't play nice with npm
This commit is contained in:
parent
6762876fd6
commit
778af6876c
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue