;; If this is not commented, Emacs will overwrite this configuration file ;; on load time. ;; (package-initialize) (defun emacs-lib (filename) (expand-file-name (concat "lib" "/" filename) user-emacs-directory)) (load (emacs-lib "settings.el")) (load (emacs-lib "funcs.el")) (load (emacs-lib "bindings.el")) (when (>= emacs-major-version 24) (load (emacs-lib "packages.el")) (load (emacs-lib "org.el")) (load (emacs-lib "twitter.el") 'missing-ok)) (add-hook 'emacs-startup-hook #'fc/load-time)