diff options
| -rw-r--r-- | oni/home/config/pop-os/emacs.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/oni/home/config/pop-os/emacs.el b/oni/home/config/pop-os/emacs.el index 1528c51..d1b98b6 100644 --- a/oni/home/config/pop-os/emacs.el +++ b/oni/home/config/pop-os/emacs.el @@ -20,9 +20,10 @@ (defun tomwpunt:enable-directory-local-modes () "Enable hooks and modes that are bound to specific directory." (cond - ((string-suffix-p "src/social-api/" (or (and-let* ((project (project-current))) - (project-root project)) - "")) + ((string-suffix-p "code/diamond-interactive/social-api/" + (or (and-let* ((project (project-current))) + (project-root project)) + "")) (local-set-key (kbd "C-c c") #'artisan-transient) (when (equal major-mode 'php-mode) (add-hook 'before-save-hook 'snowball-reformat-chanced-file nil t))))) |
