emacs/init.el
Maciej Szlosarczyk 2c415b7435
Change .elc -> .el
2017-09-04 14:12:04 +03:00

21 lines
625 B
EmacsLisp

;;; init.el --- Summary
;;; Commentary:
;;; Code:
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(load "~/.emacs.d/packages.el")
(load "~/.emacs.d/functions.el")
(load "~/.emacs.d/behaviour.el")
(load "~/.emacs.d/themes.el")
(load "~/.emacs.d/key-bindings.el")
(load "~/.emacs.d/spelling.el")
(load "~/.emacs.d/languages.el")
(load "~/.emacs.d/windows.el")
(provide 'init)
;;; init.el ends here