diff options
-rw-r--r-- | users/tazjin/emacs/config/functions.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/users/tazjin/emacs/config/functions.el b/users/tazjin/emacs/config/functions.el index 6478f88cc1c8..df5b1c1239f0 100644 --- a/users/tazjin/emacs/config/functions.el +++ b/users/tazjin/emacs/config/functions.el @@ -40,8 +40,6 @@ (interactive) (man "configuration.nix")) -;; Open my monorepo in magit - ;; Get the nix store path for a given derivation. ;; If the derivation has not been built before, this will trigger a build. (defun nix-store-path (derivation) @@ -281,4 +279,14 @@ (interactive) (vterm-send-key "x" nil nil t)) +(defun find-depot-project (dir) + "Function used in the `project-find-functions' hook list to + determine the current project root of a depot project." + (when (s-starts-with? "/depot" dir) + (if (f-exists-p (f-join dir "default.nix")) + (cons 'transient dir) + (find-depot-project (f-parent dir))))) + +(add-to-list 'project-find-functions #'find-depot-project) + (provide 'functions) |