abougouffa / minemacs

MinEmacs: an Emacs configuration framework for daily use
https://abougouffa.github.io/minemacs/
MIT License
140 stars 17 forks source link

[BUG] backgroud doom-modeline #166

Closed hmanhng closed 3 months ago

hmanhng commented 3 months ago

Describe the bug I lost the background of doom-modeline. maybe it's been a few months. I don't use the NANO module

It happens even when I use the default minemacs config

Emacs version Run M-x emacs-version and put its output here:

;; For example
GNU Emacs 29.3 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.41, cairo version 1.18.0)

Screenshots image

abougouffa commented 3 months ago

Yes @hmanhng

The background is overwritten by spacious-padding-mode. You can disable this package by adding spacious-padding to your minemacs-disabled-packages in your modules.el file.

;; In ~/.minemacs.d/modules.el
(push 'spacious-padding minemacs-disabled-packages)

Or, if you want to keep it enabled, you can set add this to your config.el:

;; In ~/.minemacs.d/config.el
(with-eval-after-load 'spacious-padding
  (setq spacious-padding-subtle-mode-line nil))
hmanhng commented 3 months ago

It doesn't seem to work properly with all themes but it was the answer I needed. thks