minad / marginalia

:scroll: marginalia.el - Marginalia in the minibuffer
GNU General Public License v3.0
782 stars 27 forks source link

How remove lines? #102

Closed alexei-28 closed 3 years ago

alexei-28 commented 3 years ago

LInux Mint 20.2. Emacs 27.1 3 monitors

I installed package marginalia ver. 0.8. In my init.el

(require 'marginalia)

Restart Emacs. And here result:

Screenshot from 2021-08-31 12-13-45

The question is: How remove this lines?

minad commented 3 years ago

The question is: How remove this lines?

By changing or fixing the theme. You may want to give the modus themes a try, in particular the dark modus-vivendi.

Closing since it is not a Marginalia issue.

alexei-28 commented 3 years ago

The question is: How remove this lines?

By changing or fixing the theme. You may want to give the modus themes a try, in particular the dark modus-vivendi.

Closing since it is not a Marginalia issue.

I changed my color theme from

'(custom-enabled-themes '(wheatgrass))

to '(custom-enabled-themes '(tango-dark))

but it not help. Same result Screenshot from 2021-09-04 17-48-25

minad commented 3 years ago

Can you reproduce this with emacs -Q and only vertico+marginalia+theme?

alexei-28 commented 3 years ago

The question is: How remove this lines?

By changing or fixing the theme. You may want to give the modus themes a try, in particular the dark modus-vivendi.

Closing since it is not a Marginalia issue.

After I install package modus-theme the problem is gone.

In my init.el file:

;; https://protesilaos.com/modus-themes/
(require 'modus-themes)
(load-theme 'modus-operandi) ; Light theme
(load-theme 'modus-vivendi)  ; Dark theme
;; Load the theme files before enabling a theme (else you get an error).
(modus-themes-load-themes)

Screenshot from 2021-09-04 21-47-49