Enable erase-buffer, websockets, org-remark, epub export, and svg export for mermaid-cli
This commit is contained in:
parent
6bd147d5c8
commit
407145f885
4 changed files with 10 additions and 0 deletions
1
init.el
1
init.el
|
|
@ -91,3 +91,4 @@
|
||||||
(unless (fboundp 'notifications-notify)
|
(unless (fboundp 'notifications-notify)
|
||||||
(require 'notifications))
|
(require 'notifications))
|
||||||
(notifications-notify :title "Emacs Server Started" :app-name "Emacs")
|
(notifications-notify :title "Emacs Server Started" :app-name "Emacs")
|
||||||
|
(put 'erase-buffer 'disabled nil)
|
||||||
|
|
|
||||||
1
mermaid-config-emacs.json
Normal file
1
mermaid-config-emacs.json
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{ "htmlLabels": false, "flowchart": { "htmlLabels": false } }
|
||||||
|
|
@ -41,6 +41,8 @@
|
||||||
|
|
||||||
;; Request is generally useful and a dependency for other packages
|
;; Request is generally useful and a dependency for other packages
|
||||||
(use-package request)
|
(use-package request)
|
||||||
|
;; For gomuks
|
||||||
|
(use-package websocket)
|
||||||
|
|
||||||
(provide 'shared-packages)
|
(provide 'shared-packages)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -651,6 +651,9 @@
|
||||||
org-roam-ui-update-on-save t
|
org-roam-ui-update-on-save t
|
||||||
org-roam-ui-open-on-start nil)))
|
org-roam-ui-open-on-start nil)))
|
||||||
|
|
||||||
|
;; Annotation
|
||||||
|
(use-package org-remark)
|
||||||
|
|
||||||
;; Bibliography stuff
|
;; Bibliography stuff
|
||||||
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
|
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
|
||||||
|
|
||||||
|
|
@ -700,6 +703,9 @@
|
||||||
(mermaid . t)
|
(mermaid . t)
|
||||||
))
|
))
|
||||||
|
|
||||||
|
;; Epub export
|
||||||
|
(use-package ox-epub)
|
||||||
|
|
||||||
;;; LaTeX configuration
|
;;; LaTeX configuration
|
||||||
(require 'ox-latex)
|
(require 'ox-latex)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue