From 5cb5d2171735761ac461c53f9b6dab641d120420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Alvari=C3=B1o?= Date: Fri, 6 May 2022 13:10:22 +0200 Subject: [PATCH] Add cites software * calibredb.el * citar.el --- myconfig.org | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/myconfig.org b/myconfig.org index 6efbce3..4f6a02d 100644 --- a/myconfig.org +++ b/myconfig.org @@ -566,7 +566,6 @@ Add some [[https://github.com/nex3/perspective-el][perspective]] to emacs ("b" . persp-switch-to-buffer*))) #+end_src - * Git management All you need for git - [[https://github.com/magit/magit][magit]] interface to git from emacs (there are a lot of tutos) @@ -1154,6 +1153,30 @@ Have a look at [[https://github.com/jgru/consult-org-roam][the project in github ("C-c n z" . consult-org-roam-search)) #+end_src +* Cites and references +** calibredb +- [[https://github.com/chenyanming/calibredb.el][Check github]] +- Check Virtual Libraries +- Check commands binding +#+begin_src emacs-lisp + (use-package calibredb + :defer t + :config + (setq calibredb-root-dir "~/Biblioteca") + (setq calibredb-db-dir (expand-file-name "metadata.db" calibredb-root-dir)) + (setq calibredb-library-alist '(("~/Biblioteca")))) +#+end_src +** Citar +- [[https://github.com/bdarcus/citar][Citar github]] +#+begin_src emacs-lisp + (use-package citar + :bind (("C-c b" . citar-insert-citation) + :map minibuffer-local-map + ("M-b" . citar-insert-preset)) + :custom + (citar-bibliography '("~/Dropbox/bib/references.bib"))) +#+end_src + * flycheck Syntax checking for programming languages