cycle-themes.el icon indicating copy to clipboard operation
cycle-themes.el copied to clipboard

Because switching between your themes shouldn't be so damn hard

Results 7 cycle-themes.el issues
Sort by recently updated
recently updated
newest added

Hi @toroidal-code ! Thanks for writing this - it's a terrific package! I had some difficulty with a conflict between `cycle-themes` and `org-todo` both wanting to control `C-c C-t`. It's...

With the `init.el` code bellow I always get the message `"Loading a theme can run Lisp code"` after loading emacs (27.1 from Debian stable/bullseye). And after pressing `y` the `C-c...

This is my `~/.emacs` ``` (require 'doom-themes) (load-theme 'doom-nord t) (setq cycle-themes-theme-list '(doom-one doom-nord doom-city-lights doom-dracula)) (require 'cycle-themes) (cycle-themes-mode) ``` `C-c t` results in: `Symbol's function definition is void: first`...

I installed cycle-themes from MELPA on spacemacs and `cycle-themes` simply cycle over the last used themes and not all the installed ones.

I traced the culprit down to this line: https://github.com/toroidal-code/cycle-themes.el/blob/6e125d11fdbc6b78fc9f219eb2609a5e29815898/cycle-themes.el#L102 Change `(not (custom-theme-p current-theme))` to `(custom-theme-p current-theme)` and it works fine. I don't understand the significance of skipping custom-themes or why...

Hello. I was looking for an elisp function that would cycle my custom Emacs themes (I agree that switching between your themes shouldn't be so damn hard), and came upon...