summary refs log tree commit diff
diff options
context:
space:
mode:
authorTerin Stock <terinjokes@gmail.com>2022-04-21 21:55:13 -0500
committerTerin Stock <terinjokes@gmail.com>2022-04-21 21:55:38 -0500
commit2d0c8856692cc63fe56c52725c264832c5daaaf8 (patch)
tree5fffc321af83c1031c0028893a50062c4a6e4610
parent81259b3442a284a2511b388c65021c50f70ace0e (diff)
config(org): add jira custom link
-rw-r--r--config.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/config.el b/config.el
index 2cc7018..2649b2a 100644
--- a/config.el
+++ b/config.el
@@ -69,6 +69,13 @@
   (setq projectile-project-search-path '(("~/Development" . 3)
                                          ("~/cf-repos" . 3))))
 
+
+(defun ts-org-custom-links ()
+  (pushnew! org-link-abbrev-alist
+            '("jira" . "https://jira.cfops.it/browse/%s")))
+(after! org
+  (add-hook! 'org-load-hook #'ts-org-custom-links))
+
 (load! "gnus")
 (load! "lang/go")
 (load! "app/osm")