|
|
|
|
@ -491,6 +491,8 @@ |
|
|
|
|
'("%e" mode-line-format-left |
|
|
|
|
mode-line-separator |
|
|
|
|
mode-line-format-right)) |
|
|
|
|
|
|
|
|
|
(setq mode-line-default-help-echo nil) |
|
|
|
|
#+end_src |
|
|
|
|
The following has been found in [[https://www.masteringemacs.org/article/hiding-replacing-modeline-strings][here]] to clean up the modeline |
|
|
|
|
I modified it marginally to avoid using the loop monster |
|
|
|
|
@ -716,6 +718,13 @@ |
|
|
|
|
(propertize "." 'display `((margin left-margin) |
|
|
|
|
,(propertize "×" 'face 'flyspell-margin-incorrect)))) |
|
|
|
|
#+end_src |
|
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp |
|
|
|
|
(advice-add 'make-flyspell-overlay :filter-return (lambda (overlay) |
|
|
|
|
(overlay-put overlay 'help-echo nil) |
|
|
|
|
overlay)) |
|
|
|
|
#+end_src |
|
|
|
|
|
|
|
|
|
** Fringe treatment |
|
|
|
|
*** Add margin marker for current line |
|
|
|
|
Add marker for current line in the margin (see |
|
|
|
|
|