Emacs not loading package at startup -
emacs not load package window-number have following in .emacs file:
;;;windows (require 'window-number) (window-number-mode) however, once emacs started if type: m-x load-file return .emacs window-number-mode loaded.
what going on here , why won't window-number load on startup? note downloaded window-number elpa
edit window-number-mode works, won't start when emacs starts. have type m-x window-number-mode. tried inserting (window-number-mode) .emacs file did not fix problem.
if loaded package elpa, make sure have (package-initialize) before use package. function (among other things) updates load-path include directories of downloaded packages.
the "require" might unnecessary, elpa packages typically have autoloads, makes no harm.
Comments
Post a Comment