diff options
author | Case Duckworth | 2021-04-17 19:03:52 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-17 19:03:52 -0500 |
commit | 014c37dc776c9a118c355dddd05029026cce31b2 (patch) | |
tree | dcc4cb18721629f095933f6368ec3f4c4cda38d0 | |
parent | Don't add a space after slime company completion (diff) | |
download | emacs-014c37dc776c9a118c355dddd05029026cce31b2.tar.gz emacs-014c37dc776c9a118c355dddd05029026cce31b2.zip |
set lexical-binding by default
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el index 5fafdc6..e9cfe82 100644 --- a/init.el +++ b/init.el | |||
@@ -17,7 +17,7 @@ | |||
17 | ;;; Code: | 17 | ;;; Code: |
18 | 18 | ||
19 | ;; Let's use lexical binding by default, shall we? | 19 | ;; Let's use lexical binding by default, shall we? |
20 | (setq lexical-binding t) | 20 | (setq-default lexical-binding t) |
21 | 21 | ||
22 | 22 | ||
23 | ;;; Necessary packages | 23 | ;;; Necessary packages |