dracula / emacs

🧛🏻‍♂️ Dark theme for Emacs
https://draculatheme.com/emacs
MIT License
330 stars 87 forks source link

Add option to disable scaling the header size #58

Closed jakevossen5 closed 4 years ago

jakevossen5 commented 4 years ago

I find the increased size of the headers really unpleasant in org mode. Could we implement something like this solarized package where they let you change it so that org headers are not larger then the rest of the text?

milouse commented 4 years ago

It is easily doable in your own config with a line like

(set-face-attribute 'org-level-1 nil :height 1.0)

Only org-level-1, org-level-2 and org-level-3 have :height customization. The height attribute must be understood as a percentage unit. 1.0 means 100%, 0.5 means 50% and 1.5 means 150%.

Can you confirm you're speaking about the solarized-use-variable-pitch variable for the solarized theme? I'll try to have a look to it to see if it worths it to add options to the dracula theme.

jakevossen5 commented 4 years ago

Ah, thank you! That line fixed what I wanted.

I was referring to these commands (found in the README here).

I don't think it is that big of a deal now, where else does the font change besides org headers?

milouse commented 4 years ago

There is also the org-document-title face. And that's all.

milouse commented 4 years ago

I just release a new version with a new setting system. Hope you'll like it :)

jakevossen5 commented 4 years ago

Looks awesome, thank you!