mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
adding new biblio module
This commit is contained in:
@ -123,6 +123,11 @@
|
||||
(:prefix-map ("n" . "notes")
|
||||
:desc "Search notes for symbol" "." #'+default/search-notes-for-symbol-at-point
|
||||
:desc "Org agenda" "a" #'org-agenda
|
||||
(:when (featurep! :tools biblio)
|
||||
:desc "Bibliographic entries" "b"
|
||||
(cond ((featurep! :completion ivy) #'ivy-bibtex)
|
||||
((featurep! :completion helm) #'helm-bibtex)))
|
||||
|
||||
:desc "Find file in notes" "f" #'+default/find-in-notes
|
||||
:desc "Browse notes" "F" #'+default/browse-notes
|
||||
:desc "Org store link" "l" #'org-store-link
|
||||
|
@ -454,6 +454,11 @@
|
||||
(:prefix-map ("n" . "notes")
|
||||
:desc "Search notes for symbol" "*" #'+default/search-notes-for-symbol-at-point
|
||||
:desc "Org agenda" "a" #'org-agenda
|
||||
(:when (featurep! :tools biblio)
|
||||
:desc "Bibliographic entries" "b"
|
||||
(cond ((featurep! :completion ivy) #'ivy-bibtex)
|
||||
((featurep! :completion helm) #'helm-bibtex)))
|
||||
|
||||
:desc "Toggle org-clock" "c" #'+org/toggle-clock
|
||||
:desc "Cancel org-clock" "C" #'org-clock-cancel
|
||||
:desc "Open deft" "d" #'deft
|
||||
|
7
modules/tools/biblio/config.el
Normal file
7
modules/tools/biblio/config.el
Normal file
@ -0,0 +1,7 @@
|
||||
;;; tools/biblio/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(use-package! ivy-bibtex
|
||||
:when (featurep! :completion ivy)
|
||||
:defer t
|
||||
:config
|
||||
(add-to-list 'ivy-re-builders-alist '(ivy-bibtex . ivy--regex-plus)))
|
7
modules/tools/biblio/packages.el
Normal file
7
modules/tools/biblio/packages.el
Normal file
@ -0,0 +1,7 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; tools/biblio/packages.el
|
||||
|
||||
(when (featurep! :completion ivy)
|
||||
(package! ivy-bibtex :pin "3cff6bd702"))
|
||||
(when (featurep! :completion helm)
|
||||
(package! helm-bibtex :pin "3cff6bd702"))
|
Reference in New Issue
Block a user