summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.org
diff options
context:
space:
mode:
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