machine_setup/ansible/roles/emacs/files/elisp/util-flymake.el

11 lines
265 B
EmacsLisp

(use-package flymake
:pin manual
:ensure nil
:commands (flymake-mode)
:config
;; Set the text before the brackets for flymake's modeline output to an empty string to make it less verbose.
(setq flymake-mode-line-lighter "")
)
(provide 'util-flymake)