about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-15 23:23:32 -0500
committerCase Duckworth2021-04-15 23:23:32 -0500
commit9ce0660678bb8610c5d6f0ef36478ae00332e401 (patch)
treed780710d95f632f9e8faa1a5357d4fe3b41aa25d /init.el
parentMerge branch 'main' of https://tildegit.org/acdw/emacs (diff)
downloademacs-9ce0660678bb8610c5d6f0ef36478ae00332e401.tar.gz
emacs-9ce0660678bb8610c5d6f0ef36478ae00332e401.zip
Enable lexical-binding by default
Diffstat (limited to 'init.el')
-rw-r--r--init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el index 554f7e4..dc3062e 100644 --- a/init.el +++ b/init.el
@@ -15,6 +15,10 @@
15;; - Make good choices. 15;; - Make good choices.
16 16
17;;; Code: 17;;; Code:
18
19;; Let's use lexical binding by default, shall we?
20(setq lexical-binding t)
21
18 22
19;;; Necessary packages 23;;; Necessary packages
20 24