11 lines
265 B
EmacsLisp
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)
|