olivetti
olivetti copied to clipboard
Emacs minor mode to automatically balance window margins
On some specific modes I like using a larger font. I achieve this, I do like this: ```emacs (add-hook ;; example mode 'help-mode-hook (lambda () (buffer-face-mode-invoke `(:height ,(apply-partially #'+ 30))...
Olivetti had an error on mixed pitch fonts. Added PR #82 to resolve.
in mixed pitch mode, :height for the default face was returning unspecified as per emacs29 faces. changed to use face-attribute with inherit.
It'd be nice if `olivetti` and `polymode` support each other. I believe it makes more sense to implement the support on `polymode`, but it looks like the project hasn't been...
Closes https://github.com/rnkn/olivetti/issues/84. @vspinu says he'd rather different modules implement support for polymode when needed rather than otherwise.
See the attached screenshot:  The red line is my cursor, deep into the margin of the window. Some information that may be useful: - Using variable width font mode...
Hey, I've been building a minor mode that emulates a paginated word processor type view on top of olivetti mode, you can see it [here](https://github.com/bradmont/page-view/). I've tried everything I can...
Hey Paul, when setting/resetting margin widths Olivetti currently assumes that the default values of `left-margin-width` and `right-margin-width` are zero. This assumption was partly removed after #78 in 1690a3c2779a5e5f6497c530a3bd12d33308b692, but we...