Eu vim para a solução no blog de Juba . O pacote color-theme
define a variável color-theme-is-global
, que decide se o tema de cores especificado deve ser instalado em todos os quadros ou apenas no selecionado.
A possible use for this variable is dynamic binding. Here is a larger example to put in your
~/.emacs
; it will make the Blue Sea color theme the default used for the first frame, and it will create two additional frames with different color themes.setup:
(require 'color-theme) ;; set default color theme (color-theme-blue-sea) ;; create some frames with different color themes (let ((color-theme-is-global nil)) (select-frame (make-frame)) (color-theme-gnome2) (select-frame (make-frame)) (color-theme-standard))