From ff7fce09120fd332e655d4fce0ea0e54ea6f4eeb Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Mon, 30 Mar 2020 18:01:18 +0200
Subject: [PATCH] Ajoute la configuration flyspell pour LaTeX
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Et positionne le dictionnaire par défaut à "american" (qui est
normalement toujours présent)
---
 Configuration.org | 1 +
 init.el           | 1 +
 2 files changed, 2 insertions(+)

diff --git a/Configuration.org b/Configuration.org
index 16f7356..87b2f35 100644
--- a/Configuration.org
+++ b/Configuration.org
@@ -817,6 +817,7 @@ modifications, de les valider (~git add -p~) ou de les annuler (~git checkout -p
 ** Flyspell
 Correcteur orthographique à la volée
 #+BEGIN_SRC emacs-lisp
+  (add-hook 'LaTeX-mode-hook 'turn-on-flyspell)
   (add-hook 'org-mode-hook 'turn-on-flyspell)
   (add-hook 'org-mode-hook 'turn-on-auto-fill)
   (add-hook 'mu4e-compose-mode-hook 'turn-on-flyspell)
diff --git a/init.el b/init.el
index 4cb1df2..61c9896 100644
--- a/init.el
+++ b/init.el
@@ -50,6 +50,7 @@
  '(elpy-rpc-backend "jedi" t)
  '(hydra-hint-display-type (quote posframe))
  '(irony-cdb-search-directory-list (quote ("." "build")))
+ '(ispell-dictionary "american")
  '(org-confirm-babel-evaluate nil)
  '(org-default-notes-file (concat org-directory "/notes.org"))
  '(org-export-html-postamble nil)
-- 
GitLab