summary refs log tree commit diff
path: root/emacs.d/init.el
blob: 440a879caaad0221f0890eccff392fedaee6c77c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;; 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"))
(load (emacs-lib "packages.el"))
(load (emacs-lib "twitter.el") 'missing-ok)

(add-hook 'emacs-startup-hook #'fc/load-time)