aboutsummaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-01-22 15:45:41 -0500
committerJesús <heckyel@hyperbola.info>2019-01-22 15:45:41 -0500
commitced0fe8f9ef7cd16ade900bb34393c627f6d0c69 (patch)
tree350d3a0cbb87b12a36c0dc12537c56a75a2668ae /init.el
parentd0f44d85466d7211d54e30970f29815842ff4180 (diff)
downloademacs-personal-ced0fe8f9ef7cd16ade900bb34393c627f6d0c69.tar.lz
emacs-personal-ced0fe8f9ef7cd16ade900bb34393c627f6d0c69.tar.xz
emacs-personal-ced0fe8f9ef7cd16ade900bb34393c627f6d0c69.zip
Change directory lisp/ to modules/
FS #2
Diffstat (limited to 'init.el')
-rw-r--r--init.el11
1 files changed, 10 insertions, 1 deletions
diff --git a/init.el b/init.el
index 58a3547..8493e48 100644
--- a/init.el
+++ b/init.el
@@ -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