Add org-ql configuration

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

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

Loading…
Cancel
Save