Add org-ql configuration

main
Sergio Alvariño 2 years ago
parent 960ff4f7c1
commit 10f10ad216

@ -936,7 +936,6 @@ Notifications
#+begin_src emacs-lisp
(use-package org-wild-notifier
:ensure t
:after org
:custom
(org-wild-notifier-notification-title "Org Wild Reminder")
@ -1003,22 +1002,34 @@ Tenemos dos opciones para el =reveal.js=:
=(setq org-reveal-root "https://cdn.jsdelivr.net/reveal.js/3.6.0/")=
#+begin_src emacs-lisp
(use-package ox-reveal
:ensure t)
;(setq org-reveal-root "https://cdn.jsdelivr.net/npm/reveal.js")
(setq org-reveal-root "https://cdn.jsdelivr.net/reveal.js/3.6.0/")
(setq org-reveal-mathjax t)
:after ox
:custom
(org-reveal-root "https://cdn.jsdelivr.net/reveal.js/3.6.0/")
(org-reveal-mathjax t)
;(org-reveal-root "https://cdn.jsdelivr.net/npm/reveal.js")
)
(use-package htmlize
:ensure t)
:after ox)
#+end_src
** ox-hugo
- [[https://ox-hugo.scripter.co/][Documentation]]
- [[https://www.kengrimes.com/ox-hugo-tutorial/][ox-hugo tutorial]] by kengrimes
#+begin_src emacs-lisp
(use-package ox-hugo
:after ox)
#+end_src
** org-ql
See the [[https://github.com/alphapapa/org-ql][github]]
#+begin_src emacs-lisp
(use-package org-ql
:after org)
#+end_src
** org-roam
Zettelkästen on emacs (Its a roam translation into org-mode) Remember
you must have graphviz and sqlite3 installed in your system, dot
@ -1082,22 +1093,23 @@ Have a look at [[https://github.com/jgru/consult-org-roam][the project in github
#+begin_src emacs-lisp
(use-package consult-org-roam
:straight (:host github :repo "jgru/consult-org-roam")
:init
(require 'consult-org-roam)
;; Activate the minor-mode
(consult-org-roam-mode 1)
:custom
(consult-org-roam-grep-func #'consult-ripgrep)
:config
;; Eventually suppress previewing for certain functions
(consult-customize
consult-org-roam-forward-links
:preview-key (kbd "M-."))
:bind
("C-c n e" . consult-org-roam-file-find)
("C-c n b" . consult-org-roam-backlinks)
("C-c n z" . consult-org-roam-search))
:after org-roam
:straight (:host github :repo "jgru/consult-org-roam")
:init
(require 'consult-org-roam)
;; Activate the minor-mode
(consult-org-roam-mode 1)
:custom
(consult-org-roam-grep-func #'consult-ripgrep)
:config
;; Eventually suppress previewing for certain functions
(consult-customize
consult-org-roam-forward-links
:preview-key (kbd "M-."))
:bind
("C-c n e" . consult-org-roam-file-find)
("C-c n b" . consult-org-roam-backlinks)
("C-c n z" . consult-org-roam-search))
#+end_src
* flycheck

Loading…
Cancel
Save