summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-05-22 16:48:45 +0200
committerAlan Pearce2017-05-22 16:48:45 +0200
commitb64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6 (patch)
tree012ee563727b37bd4c20c9ef8d3cc0a21dda4169 /emacs
parent1ddfc50b1e25f757f6e40602d204b3a5ca7db91e (diff)
downloaddotfiles-b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6.tar.lz
dotfiles-b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6.tar.zst
dotfiles-b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6.zip
Emacs: Don't flycheck on new-lines
This slows down the editor
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 451806d..9974cb8 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -1718,7 +1718,7 @@ On-the-fly error checking in programming modes?  Yes please.
   :defer 5
   :config (progn
             (global-flycheck-mode)
-            (setq flycheck-check-syntax-automatically '(save new-line mode-enabled))
+            (setq flycheck-check-syntax-automatically '(save mode-enabled))
             (if (executable-find "eslint_d")
                 (setq flycheck-javascript-eslint-executable "eslint_d"))))
 #+END_SRC