nano-emacs
nano-emacs copied to clipboard
Make pieces more independent?
First, I want to say that I really appreciate your vision and sharing your work with others. I was wondering if it is possible to make some of the pieces more independent of each other. I see that you've already made efforts to split things up, but I see a couple of areas where some pieces could be more independent.
Using the modeline module alone, the dashed line above the echo area still has some leftover colors from the original modeline. Is it possible to make it look clean and minimal in a theme agnostic way?
Similarly, using the layout module alone, the vertical divider shows up as very thick. I really like having the extra padding that is provided by this module and could see using it as a standard part of my config, even if I didn't use any other piece of nano-emacs.
I modified nano-modeline such as to have a lighter mode-line. As for the divider, it is supposed to take the background color (white in your case). Do you know where the color comes from?
@jcmkk3 I think you want to have:
(setq default-frame-alist
(append (list
'(internal-border-width . 0))))
(setq window-divider-default-places t
window-divider-default-bottom-width 1
window-divider-default-right-width 1)
(window-divider-mode 1)
In the end, I got rid of the window divider mode because it messes up with the header line. It consumes extra pixels from the left header line and brings all kind of problems.