summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.org
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-12-19 22:13:56 +0100
committerGravatar Tom Willemse2014-12-19 22:13:56 +0100
commit49af8ba47924d4fdde3cf654f7a8d1258c401680 (patch)
tree3caa7301da3eea621c41f1cbe51f605384f6dc85 /emacs/.emacs.d/init.org
parent9a4067a8c6386eb82a63b0210310ec954ac8d382 (diff)
downloaddotfiles-49af8ba47924d4fdde3cf654f7a8d1258c401680.tar.gz
dotfiles-49af8ba47924d4fdde3cf654f7a8d1258c401680.zip
Move lexical binding to top of output
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r--emacs/.emacs.d/init.org18
1 files changed, 9 insertions, 9 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 40c4812..0966f94 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -51,6 +51,15 @@
You don't have to copy it if you copy anything from this file, as
long as you do it consistently.
+* Use lexical binding
+
+ For some of these functions, and general coolness, lexical binding
+ is a must. Without it, closures cannot be made.
+
+ #+BEGIN_SRC emacs-lisp :padline no
+ ;; -*- lexical-binding: t -*-
+ #+END_SRC
+
* Some general-purpose functions and macros
A configuration as big as mine is bound to have some functions and
@@ -106,15 +115,6 @@
`(add-hook 'emacs-startup-hook #'(lambda () ,@body)))
#+END_SRC
-* Use lexical binding
-
- For some of these functions, and general coolness, lexical binding
- is a must. Without it, closures cannot be made.
-
- #+BEGIN_SRC emacs-lisp :padline no
- ;; -*- lexical-binding: t -*-
- #+END_SRC
-
* Set some personal information
This information is used by some emacs commands and modules to make