다른 배경색을 제외하고 Emacs 테마 billw 를 사용하고 싶습니다 . 내 .emacs
파일에 다음이 있습니다.
(require 'color-theme)
(color-theme-initialize)
(color-theme-billw)
(set-background-color "gray12")
그러나 이것은 시작할 때 배경색을 바꾸지 않는 것 같습니다. set-background-color "gray12"
각 세션이 시작될 때 미니 버퍼에서 수동으로 실행해야합니다 .
이것에 대한 도움이 필요하십니까? 출력 결과를 기반으로 사용자 정의 테마를 만들려고했지만 color-theme-print
그만한 가치보다 더 많은 문제가 발생했습니다 ...
(custom-set-faces `(default ((t (:background "gray13")))))