Compare commits

..

No commits in common. "cc53df4a47cf5e511970a08b023b5130eafbcdc6" and "a5057e10c16307989d1d62004167c1a1efe558eb" have entirely different histories.

View file

@ -408,21 +408,17 @@ testing in my [[file:~/org/snamellit/testfile.org::*User Journey Graph][org babe
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package ob-mermaid (use-package ob-mermaid
:ensure t :ensure t
:demand t :demand t)
:config
(setq org-babel-load-languages (cons '(mermaid . t) org-babel-load-languages))
(org-babel-do-load-languages 'org-babel-load-languages org-babel-load-languages))
#+END_SRC
#+RESULTS: #+END_SRC
: [nil 26817 38923 492671 nil elpaca-process-queues nil nil 702000 nil]
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package ob-latex (use-package ob-latex
:ensure nil :ensure nil
:demand t :demand t
:custom (org-preview-latex-default-process "lualatex")) :custom
(org-preview-latex-default-process "lualatex"))
#+END_SRC #+END_SRC
@ -430,24 +426,24 @@ testing in my [[file:~/org/snamellit/testfile.org::*User Journey Graph][org babe
: [nil 26768 38911 12050 nil elpaca-process-queues nil nil 97000 nil] : [nil 26768 38911 12050 nil elpaca-process-queues nil nil 97000 nil]
#+BEGIN_SRC emacs-lisp :tangle yes #+BEGIN_SRC emacs-lisp :tangle yes
(;; configure babel languages ;; configure babel languages
use-package ob (use-package ob
:ensure nil :ensure nil
:config :after org
(setq org-babel-load-languages '((emacs-lisp . t) :custom
(org-babel-load-languages '((emacs-lisp . t)
(shell . t) (shell . t)
(python . t) (python . t)
(scheme . t) (scheme . t)
(plantuml . t) (plantuml . t)
;(mermaid . t) (mermaid . t)
(sql . t) (sql . t)
(sqlite . t) (sqlite . t)
(dot . t))) (dot . t)))
(org-babel-do-load-languages 'org-babel-load-languages org-babel-load-languages)) )
#+END_SRC #+END_SRC
#+RESULTS: #+RESULTS:
: t
***** Example Emacs Lisp ***** Example Emacs Lisp
@ -2211,21 +2207,6 @@ Enables and configures Yasnippet, a template system for Emacs:
#+RESULTS: #+RESULTS:
: [nil 26481 25510 926111 nil elpaca-process-queues nil nil 690000 nil] : [nil 26481 25510 926111 nil elpaca-process-queues nil nil 690000 nil]
** Which-key helps with discovery of keybinds
#+BEGIN_SRC emacs-lisp
(use-package which-key
:ensure t
:functions
which-key-mode
:config
(which-key-mode))
#+END_SRC
#+RESULTS:
: [nil 26817 33065 659508 nil elpaca-process-queues nil nil 206000 nil]
* Programming * Programming
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp