Highlight urls in buffers as links

This commit is contained in:
Henrik Lissner 2019-10-18 21:23:02 -04:00
parent 2d2413d293
commit 80532921bb
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -391,6 +391,13 @@ treat Emacs as a non-application window."
(set-window-configuration doom--ediff-saved-wconf)))))
(use-package! goto-addr
:hook (text-mode . goto-address-mode)
:hook (prog-mode . goto-address-prog-mode)
:config
(define-key goto-address-highlight-keymap (kbd "RET") #'goto-address-at-point))
(use-package! hl-line
;; Highlights the current line
:hook ((prog-mode text-mode conf-mode) . hl-line-mode)