From f8b7b452606e41e084df51a6e0fd3c00215cded0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Wed, 5 Oct 2022 12:24:12 +0100 Subject: [PATCH] templates: Add project run command to dir-locals --- templates/.dir-locals.el | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 templates/.dir-locals.el diff --git a/templates/.dir-locals.el b/templates/.dir-locals.el new file mode 100644 index 0000000..d559d6b --- /dev/null +++ b/templates/.dir-locals.el @@ -0,0 +1,4 @@ +((nil . ((indent-tabs-mode . nil) + (tab-width . 4) + (fill-column . 80) + (projectile-project-run-cmd . "cd templates && parcel serve --no-autoinstall"))))