diff options
author | Alan Pearce | 2017-05-22 16:48:45 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-22 16:48:45 +0200 |
commit | b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6 (patch) | |
tree | 012ee563727b37bd4c20c9ef8d3cc0a21dda4169 | |
parent | 1ddfc50b1e25f757f6e40602d204b3a5ca7db91e (diff) | |
download | nixfiles-b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6.tar.lz nixfiles-b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6.tar.zst nixfiles-b64fafdae9c71648ffd0ac01446f1bcc7aa2c2e6.zip |
Emacs: Don't flycheck on new-lines
This slows down the editor
-rw-r--r-- | emacs/.emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 451806da..9974cb85 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 |