Abstract init from .emacs file

This commit is contained in:
Maciej Szlosarczyk 2017-05-29 11:20:20 +03:00
parent 88ea086beb
commit 4e3bdc6352
No known key found for this signature in database
GPG key ID: 0D4EEACF63D4262E
2 changed files with 15 additions and 10 deletions

13
init.el Normal file
View file

@ -0,0 +1,13 @@
;;; init.el --- Summary
;;; Commentary:
;;; Code:
(load "~/.emacs.d/packages.elc")
(load "~/.emacs.d/functions.elc")
(load "~/.emacs.d/behaviour.elc")
(load "~/.emacs.d/themes.elc")
(load "~/.emacs.d/key-bindings.elc")
(load "~/.emacs.d/spelling.elc")
(load "~/.emacs.d/languages.elc")
(provide 'init)
;;; init.el ends here