Disable goto-address-mode in org-mode

Interferes with how org links to files, tries to open them in browser instead
This commit is contained in:
Evie Litherland-Smith 2025-02-17 09:48:38 +00:00
parent daa36d8e09
commit 52b029f940

View file

@ -969,7 +969,10 @@
(use-package goto-addr
:hook ((text-mode . goto-address-mode)
(prog-mode . goto-address-prog-mode)))
(prog-mode . goto-address-prog-mode))
:config
(with-eval-after-load 'org
(add-hook 'org-mode-hook #'(lambda () (goto-address-mode -1)))))
(use-package avy
:if (package-installed-p 'avy)