最小限の設定https://www.refheap.com/18816
シナリオ 1。
- ターミナルから「emacs」を実行します。
- Mx サーバー起動
- ターミナルから「emacsclient -c」を実行します。
- 効果: テーマが適用されます。
シナリオ 2。
- ターミナルから「emacs --daemon」を実行します
- 「emacsclient -c」を実行します
- 効果: テーマは適用されません。
何故ですか?
.emacs.d/init.d 構成:
(require 'package)
(package-initialize)
(defun install-pack (p)
"A utility function to help in installing emacs package."
(unless (package-installed-p p) (package-install p)))
(defun install-packs (packs)
"A utility function to help in installing emacs packages."
(unless package-archive-contents
(package-refresh-contents))
(dolist (p packs) (install-pack p)))
;(load-theme 'tronesque)
(load-theme 'tronesque t)
また
;(load-theme 'tronesque)
;;(load-theme 'tronesque t)
(custom-set-variables
;; custom-set-variables was added by Custom.
'(custom-enabled-themes (quote (tronesque)))
'(custom-safe-themes (quote ("b8f561a188a77e450ab8a060128244c81dea206f15c1152a6899423dd607b327" default))))
(custom-set-faces
;; custom-set-faces was added by Custom.
)