From af18bcc132f7fa2a3c3a82b83f29a5dfea854704 Mon Sep 17 00:00:00 2001
From: Philippe Dosch <Philippe.Dosch@loria.fr>
Date: Thu, 23 May 2024 17:30:58 +0200
Subject: [PATCH] Ajout de smex

---
 .emacs | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/.emacs b/.emacs
index 290701c..5b1f591 100644
--- a/.emacs
+++ b/.emacs
@@ -244,6 +244,10 @@
   :ensure t
   )
 
+(use-package smex
+  :ensure t
+  )
+
 (use-package swiper
   :ensure t
   :bind (("\C-s"      . swiper)
@@ -966,6 +970,18 @@
 (yas-global-mode)
 (global-set-key [(control $)] 'yas-global-mode)
 
+;; Pour mermaid, un éditeur de diagrammes utilisable avec org
+;; mermaid a été installé avec npm :
+;; sudo npm install -g @mermaid-js/mermaid-cli
+;; (require 'ob-mermaid)
+;; (setq ob-mermaid-cli-path "/usr/local/bin/mmdc")
+
+;; (org-babel-do-load-languages
+;;     'org-babel-load-languages
+;;     '((mermaid . t)
+;;       (scheme . t)
+;;       (your-other-langs . t)))
+
 ;; Pour dire où est reveal...
 (setq org-reveal-root "file:///home/phil/divers/presentation/reveal.js")
 
-- 
GitLab