diff --git a/ha-applications.org b/ha-applications.org index a809e0b..343df39 100644 --- a/ha-applications.org +++ b/ha-applications.org @@ -108,6 +108,12 @@ The [[https://scripter.co/using-git-delta-with-magit][magit-delta]] project uses :ensure t :hook (magit-mode . magit-delta-mode)) #+end_src + +This requires [[https://dandavison.github.io/delta/installation.html][installing an executable]]. For instance, on my Mac: +#+begin_src sh + brew install git-delta +#+end_src + I also need to append the following to my [[file:~/.gitconfig][~/.gitconfig]] file: #+begin_src conf [delta] diff --git a/ha-config.org b/ha-config.org index 14f1684..e2d3a2b 100644 --- a/ha-config.org +++ b/ha-config.org @@ -224,7 +224,11 @@ While the space can be use to separate words (acting a bit like a =.*= regular e (completion-ignore-case t) (completion-category-defaults nil) (completion-category-overrides '((file (styles partial-completion)))) + :init + (defvar orderless-skip-highlighting nil + "Not sure why this is being accessed.") + (push 'orderless completion-styles)) #+end_src *Note:* Open more than one file at once with =find-file= with a wildcard. We may also give the =initials= completion style a try.