Remove Flymake substring from emacs mode line.

This commit is contained in:
Tom Alexander 2023-09-14 15:00:09 -04:00
parent 971ed7e75d
commit 1f18074e29
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,10 @@
(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)

View File

@ -8,6 +8,8 @@
(require 'util-vertico)
(require 'util-flymake)
(require 'lang-python)
(require 'lang-javascript)