This commit is contained in:
Aleksandr Lebedev 2025-03-30 17:54:52 +02:00
parent e6497cd8a1
commit 1d9066918f

View file

@ -688,19 +688,19 @@ This doesn-t work for me for now, very laggy and inconsistent
* Drawing tools * Drawing tools
[[https://github.com/misohena/el-easydraw][el-easydraw]] [[https://github.com/misohena/el-easydraw][el-easydraw]]
#+begin_src emacs-lisp #+begin_src emacs-lisp
;;(use-package el-easydraw :ensure t :demand nil) ;;(use-package el-easydraw :ensure t :demand nil)
(with-eval-after-load 'org (with-eval-after-load 'org
(require 'edraw-org) (require 'edraw-org)
(edraw-org-setup-default)) (edraw-org-setup-default)
;; When using the org-export-in-background option (when using the (require 'edraw-color-picker-mode)
;; asynchronous export function), the following settings are (edraw-color-picker-global-mode))
;; required. This is because Emacs started in a separate process does ;; When using the org-export-in-background option (when using the
;; not load org.el but only ox.el. ;; asynchronous export function), the following settings are
(with-eval-after-load "ox" ;; required. This is because Emacs started in a separate process does
(require 'edraw-org) ;; not load org.el but only ox.el.
(edraw-org-setup-exporter)) (with-eval-after-load "ox"
(require 'edraw-color-picker-mode) (require 'edraw-org)
(edraw-color-picker-global-mode) (edraw-org-setup-exporter))
#+end_src #+end_src
* RAINBOW DELIMITERS * RAINBOW DELIMITERS
Adding rainbow coloring to parentheses. Adding rainbow coloring to parentheses.