diff options
-rw-r--r-- | .dir-locals.el | 4 | ||||
-rw-r--r-- | Emacs/.config/emacs/.config/custom.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index e69de29..b5fdeb5 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -0,0 +1,4 @@ +;;; Directory Local Variables -*- no-byte-compile: t; -*- +;;; For more information see (info "(emacs) Directory Variables") + +((nil . ((+license/license-choice "MIT")))) diff --git a/Emacs/.config/emacs/.config/custom.el b/Emacs/.config/emacs/.config/custom.el index 53ee2b7..03cfcc2 100644 --- a/Emacs/.config/emacs/.config/custom.el +++ b/Emacs/.config/emacs/.config/custom.el @@ -4,7 +4,8 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(safe-local-variable-values - '((projectile-project-configure-cmd . "make clean") + '((+license/license-choice "MIT") + (projectile-project-configure-cmd . "make clean") (projectile-project-test-cmd . "make test") (projectile-project-run-cmd . "make run") (projectile-project-compilation-cmd . "make")))) |