Change .elc -> .el

This commit is contained in:
Maciej Szlosarczyk 2017-09-04 14:12:04 +03:00
parent 46552ca951
commit 2c415b7435
No known key found for this signature in database
GPG key ID: 89B81875705031E6
2 changed files with 22 additions and 15 deletions

23
init.el
View file

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

View file

@ -7,13 +7,13 @@
(require 'company) (require 'company)
;; Imports ;; Imports
(load "~/.emacs.d/languages/ruby.elc") (load "~/.emacs.d/languages/ruby.el")
(load "~/.emacs.d/languages/python.elc") (load "~/.emacs.d/languages/python.el")
(load "~/.emacs.d/languages/elisp.elc") (load "~/.emacs.d/languages/elisp.el")
(load "~/.emacs.d/languages/elixir.elc") (load "~/.emacs.d/languages/elixir.el")
(load "~/.emacs.d/languages/rust.elc") (load "~/.emacs.d/languages/rust.el")
(load "~/.emacs.d/languages/web.elc") (load "~/.emacs.d/languages/web.el")
(load "~/.emacs.d/languages/js.elc") (load "~/.emacs.d/languages/js.el")
;;; SQL ;;; SQL
(defun sql-mode-hook () (defun sql-mode-hook ()