Change directory lisp/ to modules/

FS #2
This commit is contained in:
Jesús
2019-01-22 15:45:41 -05:00
parent d0f44d8546
commit ced0fe8f9e
44 changed files with 366 additions and 68 deletions

11
init.el
View File

@@ -1,12 +1,16 @@
;;; init.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;; Emacs!!!
;;; Code:
(package-initialize)
(when (version<= emacs-version "24")
(error "This is made form Emacs >=24"))
(defconst emacs-start-time (current-time))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/lisp/" user-emacs-directory))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/modules/" user-emacs-directory))
;;; Raise garbage collection threshold after init
(add-hook 'after-init-hook
@@ -63,6 +67,7 @@
(require 'init-web-mode)
(require 'init-ready)
(require 'init-dokuwiki)
;;; Loads custom file
(when (file-exists-p custom-file)
(load custom-file))
@@ -73,3 +78,7 @@
(message "[STARTUP] Loading %s ... done (%.3fs)" load-file-name elapsed)))
(provide 'init)
;; Local Variables:
;; byte-compile-warnings: (not free-vars)
;; End:
;;; init.el ends here