;;; init-flymake.el --- Configure flymake -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; Configure flymake ;;; Code: (use-package flymake :ensure nil :defer t :bind (("C-c f" . flymake-show-buffer-diagnostics) ("C-c C-p" . flymake-goto-prev-error) ("C-c C-n" . flymake-goto-next-error)) :hook (prog-mode . flymake-mode) :custom (flymake-start-on-save-buffer t) (flymake-fringe-indicator-position 'left-fringe) (flymake-suppress-zero-counters t) (flymake-proc-compilation-prevents-syntax-check t) (elisp-flymake-byte-compile-load-path load-path) (flymake-no-changes-timeout 9999)) (provide 'init-flymake) ;;; init-flymake.el ends here