jonnay / org-beautify-theme

Subtle theme tweaks to make org-mode more pretty
77 stars 12 forks source link

Observation on loading two themes on startup. #6

Open heptadecagon opened 7 years ago

heptadecagon commented 7 years ago

I was having trouble loading both org-beautify and my current theme at the same time at startup, until I found a solution. Replace the custom-enabled-themes line in .emacs or init.el, which should look like

'(custom-enabled-themes (quote ()))

with the following:

'(custom-enabled-themes (quote (org-beautify "theme name")))

On MacOS, if org-beautify is not first, light bars appear around level headings in org mode. They are noticeable in dark modes like wombat.

I'm using Railway Emacs 25.2 on MacOS 10.12.6.

My apologies if this is a naive observation!