mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-07 12:47:30 -05:00
lang/org: set org-link-abbrev-alist non-destructively
So prior values aren't overwritten (and shadow these defaults), and also because, due to the hook order, the attach: link was overwritten by this setq.
This commit is contained in:
@ -356,15 +356,15 @@ file isn't in `org-directory'."
|
|||||||
'error)))
|
'error)))
|
||||||
|
|
||||||
;; Add custom link types
|
;; Add custom link types
|
||||||
(setq org-link-abbrev-alist
|
(nconcq! org-link-abbrev-alist
|
||||||
'(("github" . "https://github.com/%s")
|
'(("github" . "https://github.com/%s")
|
||||||
("youtube" . "https://youtube.com/watch?v=%s")
|
("youtube" . "https://youtube.com/watch?v=%s")
|
||||||
("google" . "https://google.com/search?q=")
|
("google" . "https://google.com/search?q=")
|
||||||
("gimages" . "https://google.com/images?q=%s")
|
("gimages" . "https://google.com/images?q=%s")
|
||||||
("gmap" . "https://maps.google.com/maps?q=%s")
|
("gmap" . "https://maps.google.com/maps?q=%s")
|
||||||
("duckduckgo" . "https://duckduckgo.com/?q=%s")
|
("duckduckgo" . "https://duckduckgo.com/?q=%s")
|
||||||
("wolfram" . "https://wolframalpha.com/input/?i=%s")
|
("wolfram" . "https://wolframalpha.com/input/?i=%s")
|
||||||
("doom-repo" . "https://github.com/hlissner/doom-emacs/%s")))
|
("doom-repo" . "https://github.com/hlissner/doom-emacs/%s")))
|
||||||
|
|
||||||
(+org-def-link "org" org-directory)
|
(+org-def-link "org" org-directory)
|
||||||
(+org-def-link "doom" doom-emacs-dir)
|
(+org-def-link "doom" doom-emacs-dir)
|
||||||
|
Reference in New Issue
Block a user