diff options
-rw-r--r-- | completion.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/completion.org b/completion.org index a984ac2..4e1c267 100644 --- a/completion.org +++ b/completion.org @@ -48,7 +48,8 @@ (use-package vertico :ensure t :init (setq vertico-count 20 - vertico-cycle t) + vertico-cycle t + org-refile-use-outline-path t) :config ;; (defun jao--be-orderless (&rest _any) @@ -113,7 +114,7 @@ :config (require 'jao-compilation) (defun jao-consult-project-root () - (expand-file-name (or (jao-compilation-root) (vc-root-dir) ""))) + (expand-file-name (or (vc-root-dir) (jao-compilation-root) ""))) (setq consult-project-root-function #'jao-consult-project-root) |