;;; init-flymake.el --- Configure flymake -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; Configure flymake ;;; Code: (require 'flymake) (setq flymake-start-on-save-buffer t) (setq flymake-fringe-indicator-position 'left-fringe) (setq flymake-suppress-zero-counters t) (setq flymake-proc-compilation-prevents-syntax-check t) (setq elisp-flymake-byte-compile-load-path load-path) (setq flymake-no-changes-timeout 9999) (provide 'init-flymake) ;;; init-flymake.el ends here