aboutsummaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
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