From 533a0cf5f9c55443ec3a17af2232f3397be247d6 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sat, 01 Jan 2022 08:05:59 +0000
Subject: [PATCH] Gerrit interation isn't great and the package is unmaintained

---
 config.org |   20 ++++++++------------
 1 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/config.org b/config.org
index 9e81ea7..a75203b 100644
--- a/config.org
+++ b/config.org
@@ -104,20 +104,10 @@
 Use aspell for spellchecking. 
 Auto-enable in latex and org as they're the main writing modes.
 #+BEGIN_SRC emacs-lisp
-  ;; (require 'ispell)
-  ;; (setq-default ispell-program-name "aspell")
-  ;; (setq-default ispell-local-dictionary "en_AU")
-  ;; (add-hook 'tex-mode-hook 'flyspell-mode)
-  ;; (add-hook 'latex-mode-hook 'flyspell-mode)
-  ;; (add-hook 'TeX-mode-hook 'flyspell-mode)
-  ;; (add-hook 'LaTeX-mode-hook 'flyspell-mode)
-  ;; (add-hook 'latex-mode-hook 'flyspell-buffer)
-  ;; (add-hook 'org-mode-hook 'flyspell-mode)
-  ;; (add-hook 'org-mode-hook 'flyspell-buffer)
-  ;; (diminish 'flyspell-mode)
   (use-package flyspell
     :hook (tex-mode latex-mode TeX-mode LaTeX-mode org-mode)
     :diminish flyspell-mode
+    :init (require 'ispell)
     :config
     (setq-default ispell-program-name "aspell")
     (setq-default ispell-local-dictionary "en_AU"))
@@ -714,6 +704,12 @@
   (use-package highlight-indentation
     :hook (prog-mode . highlight-indentation-mode))
 #+END_SRC
+
+** Auto revert mode
+Update unchanged buffers if underlying file changes.
+#+BEGIN_SRC emacs-lisp
+  (global-auto-revert-mode)
+#+END_SRC
 * Mode line tweaks
 Diminish is used but is included in init.el such that it can be used throughout this document
 ** Spaceline
@@ -905,7 +901,7 @@
   (add-hook 'magit-process-prompt-functions
             #'magit-process-general-yn-prompt-hook)
 #+END_SRC
-*** Gerrit integration
+*** COMMENT Gerrit integration
 Gerrit takes ~origin:refs/for/master~ as a destination.
 Enable magit to work with its oddities.
 #+BEGIN_SRC emacs-lisp

--
Gitblit v1.9.3