emacs icon indicating copy to clipboard operation
emacs copied to clipboard

docs: performance hint for doom emacs users

Open pmbittner opened this issue 9 months ago • 0 comments

This commit adds a hint to the README for doom emacs users.

Customizing the flavor of cattpuccin in doom emacs as suggested in the README:

(load-theme 'catppuccin t t)
(setq catppuccin-flavor 'frappe) ;; or 'latte, 'macchiato, or 'mocha
(catppuccin-reload)

increases the startup time of doom emacs significantly (likely because catppuccin is loaded twice). I noticed that setting the flavor before loading the theme:

(setq catppuccin-flavor 'frappe) ;; or 'latte, 'macchiato, or 'mocha
(load-theme 'catppuccin t t)

works and so the call to (catppuccin-reload) can be omitted, yielding fast startup times again.

I added a respective hint for doom users to the README.

pmbittner avatar May 15 '24 12:05 pmbittner