package.el
特に、ファイルを見てください。
(defcustom package-enable-at-startup t
"Whether to activate installed packages when Emacs starts.
If non-nil, packages are activated after reading the init file
and before `after-init-hook'. Activation is not done if
`user-init-file' is nil (e.g. Emacs was started with \"-q\").
Even if the value is nil, you can type \\[package-initialize] to
activate the package system at any time."
:type 'boolean
:group 'package
:version "24.1")
したがって、package-initialize
早い段階で呼び出してから、.emacs
などの必要なものを上書きできますtool-bar-mode
。
に上書きを入れることもできますafter-init-hook
。