Commit 6fbb88fc798f

Vincent Demeester <vincent@sbr.pm>
2020-03-10 20:40:07
org-mode: disable smartparens-mode
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 116b912
Changed files (2)
config/setup-org.el
@@ -86,8 +86,7 @@
     (setq fill-column 90)
     (auto-revert-mode)
     (auto-fill-mode)
-    (org-indent-mode)
-    (smartparens-mode)))
+    (org-indent-mode)))
 
 (use-package org-id
   :after (org)
emacs.org
@@ -923,10 +923,7 @@
 - If the major mod is not =org-agenda-mode= (a sub-mode of =org-mode=)
   + I set the =fill-column= to ~90~ (instead of the usual ~80~), and I enable =auto-fill= mode.
   + I turn on =auto-revert-mode= so that the buffer is always up-to-date.
-  + I really like =smartparens= when programming, and I find it also really useful when
-    editing notes in =org-mode=.
   + I like to have header indented, so I'm enabling =org-indent-mode=.
-  + And of course, I want =flyspell= to be enable so I quickly see my /writing/ mistakes.
 
 #+begin_src emacs-lisp
 (defun vde/org-mode-hook ()
@@ -936,8 +933,7 @@
     (setq fill-column 90)
     (auto-revert-mode)
     (auto-fill-mode)
-    (org-indent-mode)
-    (smartparens-mode)))
+    (org-indent-mode)))
 #+end_src
 
 Let's also use =org-id=…