This commit is contained in:
Chad Walstrom 2025-12-04 15:18:38 +05:30 committed by GitHub
commit 6c8ab18ce6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -218,6 +218,7 @@ For [[doom-module:+jupyter]], install =jupyterlab= or =jupyter-notebook= ([[http
#+begin_src sh #+begin_src sh
apt-get install texlive dvipng apt-get install texlive dvipng
apt-get install gnuplot apt-get install gnuplot
apt-get install texinfo # for makeinfo binary
#+end_src #+end_src
** NixOS ** NixOS

View file

@ -1,6 +1,9 @@
;; -*- lexical-binding: t; no-byte-compile: t; -*- ;; -*- lexical-binding: t; no-byte-compile: t; -*-
;;; lang/org/doctor.el ;;; lang/org/doctor.el
(unless (executable-find "makeinfo")
(warn! "Couldn't find makeinfo. Org Mode and Org Guide info manuals will not be available."))
(when (modulep! +gnuplot) (when (modulep! +gnuplot)
(unless (executable-find "gnuplot") (unless (executable-find "gnuplot")
(warn! "Couldn't find gnuplot. org-plot/gnuplot will not work"))) (warn! "Couldn't find gnuplot. org-plot/gnuplot will not work")))