How to make increase the line length?

Hi,

I would like to make increase the line width by a factor of 1.5 or 2. I found the option ‘Readable Line Length’, but switching that off make the text look really bad. On the other hand for some diagrams the default length is insufficient IMO.

I did not find an option to change that so far. I tried multiple Themes such as Minimal as well. However, did not find an option to adjust that. Any tips?

In addition to the Style Settings plugin (which it sounds like you already know), Minimal has a separate Minimal Settings plugin (I’d expect line length to be in Style Settings, but who knows). Minimal does have a Style Setting for maximum line width, but it sets it as a percentage (I don’t know if it has other relevant settings; I found that while retrieving the snippet below.)

Otherwise, you can use a CSS snippet to change the length.

/* Change readable line length.
Source: sailKite @ https://discord.com/channels/686053708261228577/702656734631821413/1342953633800654898 */

body {
    /* default is 700px */
    --file-line-width: 900px;
}