| @@ -56,6 +56,7 @@ | |||
| ;;(require 'init-auto-complete) | |||
| (require 'init-company) | |||
| (require 'init-windows) | |||
| (require 'init-flycheck) | |||
| (require 'init-editing-utils) | |||
| @@ -93,8 +94,6 @@ | |||
| (when *spell-check-support-enabled* | |||
| (require 'init-spelling)) | |||
| (require 'init-flycheck) | |||
| (require 'init-dvorak) | |||
| ;;(require 'init-marmalade) | |||
| @@ -7,6 +7,9 @@ | |||
| (add-hook 'after-init-hook #'global-flycheck-mode) | |||
| (add-hook 'c++-mode-hook (lambda () (setq flycheck-gcc-language-standard "c++11"))) | |||
| ;; https://github.com/flycheck/flycheck/issues/567#issuecomment-69951909 | |||
| (require 'flycheck) | |||
| ;; textlint | |||
| ;; https://www.macs.hw.ac.uk/~rs46/posts/2018-12-29-textlint-flycheck.html | |||
| (flycheck-define-checker textlint | |||