tweaking org-jira

This commit is contained in:
Peter Tillemans 2024-08-07 09:53:38 +02:00
parent 46e6b9dc83
commit 9a54cc903e

View file

@ -749,7 +749,10 @@ This enables direnv globally.
+org-capture-projects-file "~/Dropbox/org/projects.org")
:hook
(org-mode . pti-org-mode-config)
)
:bind (
("<leader> o a" . org-agenda)
("<leader> o s" . org-store-link)
))
#+END_SRC
#+RESULTS:
@ -1213,6 +1216,9 @@ Here is a snapshot of the keybindings dd <2024-07-30 Tue>.
))
(make-directory "~/.org-jira" 'parents)
(setq jiralib-url (auth-source-pass-get "url" "customer/jira"))
(setq org-jira-custom-jqls
'((:jql " assignee = currentUser() and project = TTRK order by priority DESC " :limit 100 :filename "~/Projects/timetrak/jira")
(:jql " assignee = currentUser() and createdDate >= '2024-01-01' order by created DESC " :limit 100 :filename "this-years-work")))
(jiralib-login
(auth-source-pass-get "user" "customer/jira")
(auth-source-pass-get 'secret "customer/jira")))
@ -1871,6 +1877,31 @@ Configures Elfeed, an RSS feed reader for Emacs:
: [nil 26279 35504 577569 nil elpaca-process-queues nil nil 161000 nil]
*** TODO OPML To Elfeed
#+BEGIN_SRC emacs-lisp
(use-package opml-to-elfeed-feeds
:ensure (:host "codeberg.org" :repo "kakafarm/emacs-opml-to-elfeed-feeds"
:main "opml-to-elfeed-feeds.el")
:custom (o2e-opml-list . (("https://craftering.systemcrafters.net/Craftering.opml" blog craftering opml-to-elfeed-feeds)))
:commands (o2e-opml-to-elfeed--update-o2e-efleed-feeds)
)
#+END_SRC
#+RESULTS:
: [nil 26289 17361 350243 nil elpaca-process-queues nil nil 817000 nil]
This does all kind of weird things. Apparently elpaca or use-package
magically namespaces all the functions and for some reason it fails
to require 'elfeed'. ... The weird thing is that the emacs lips
feature is used to expand o2e to opml-to-elfeed-feeds, by setting the
`read-symbol-shorthands` variable to `(("o2e"
. "opml-to-elfeed-feeds"))`.
Agreed with cow_2000 to create an issue on the repo with my
recommendation for public API.
** Enable 0x0 to share snippets and files easily
Configures the ~0x0~ package for easily sharing code snippets and files:
#+BEGIN_SRC emacs-lisp