Compare commits

...

2 Commits

Author SHA1 Message Date
Tom Alexander
34cd3b7aa4
Defer the loading of edit-indirect via :commands. 2023-09-14 15:21:39 -04:00
Tom Alexander
1f18074e29
Remove Flymake substring from emacs mode line. 2023-09-14 15:00:09 -04:00
3 changed files with 15 additions and 1 deletions

View File

@ -7,6 +7,8 @@
:init (setq markdown-command "multimarkdown"))
;; For code block editing
(use-package edit-indirect)
(use-package edit-indirect
:commands (edit-indirect-region edit-indirect-save edit-indirect-abort edit-indirect-commit edit-indirect-display-active-buffer)
)
(provide 'lang-markdown)

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)