I have installed several Emacs packages by M-x install-package. The starter-kit package hide the tool-bar and menu bar of emacs but I want them show back.
I added
(tool-bar-mode t)
in my ~/.emacs file but it seems get evaluated before starter-kit package get loaded.
Where should I put those code if I want evaluate them when all installed packages finished loading ?
Have a look at the
package.elfile, in particular:So you can call
package-initializeearly in your.emacsand then overwrite what you need such astool-bar-mode.You could also put your overwrites in the
after-init-hook.