Don't open org-roam-ui on start for real, and mermaid support
This commit is contained in:
parent
864c494037
commit
d33bf6d36e
1 changed files with 7 additions and 1 deletions
|
|
@ -647,7 +647,8 @@
|
||||||
:config
|
:config
|
||||||
(setq org-roam-ui-sync-theme t
|
(setq org-roam-ui-sync-theme t
|
||||||
org-roam-ui-follow t
|
org-roam-ui-follow t
|
||||||
org-roam-ui-update-on-save t))
|
org-roam-ui-update-on-save t
|
||||||
|
org-roam-ui-open-on-start nil))
|
||||||
|
|
||||||
;; Bibliography stuff
|
;; Bibliography stuff
|
||||||
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
|
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
|
||||||
|
|
@ -687,10 +688,15 @@
|
||||||
:type git :host github :repo "hasu/emacs-ob-racket"
|
:type git :host github :repo "hasu/emacs-ob-racket"
|
||||||
:files ("*.el" "*.rkt")))
|
:files ("*.el" "*.rkt")))
|
||||||
|
|
||||||
|
;; Mermaid support, for graphing
|
||||||
|
(use-package mermaid-mode)
|
||||||
|
(use-package ob-mermaid)
|
||||||
|
|
||||||
(org-babel-do-load-languages
|
(org-babel-do-load-languages
|
||||||
'org-babel-load-languages
|
'org-babel-load-languages
|
||||||
'((emacs-lisp . t)
|
'((emacs-lisp . t)
|
||||||
(racket . t)
|
(racket . t)
|
||||||
|
(mermaid . t)
|
||||||
))
|
))
|
||||||
|
|
||||||
;;; LaTeX configuration
|
;;; LaTeX configuration
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue