summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotfiles-darwin/emacs/init.el2
-rw-r--r--dotfiles-linux/emacs/init.el2
-rw-r--r--emacs/early-init.el2
-rw-r--r--emacs/functions.el2
-rw-r--r--emacs/init.el2
5 files changed, 6 insertions, 4 deletions
diff --git a/dotfiles-darwin/emacs/init.el b/dotfiles-darwin/emacs/init.el
index 57812e4..dd89f18 100644
--- a/dotfiles-darwin/emacs/init.el
+++ b/dotfiles-darwin/emacs/init.el
@@ -1,4 +1,4 @@
-;; General Configuration
+;; General Configuration -*- lexical-binding: t -*-
(setopt frame-resize-pixelwise t
mac-right-command-modifier 'meta
diff --git a/dotfiles-linux/emacs/init.el b/dotfiles-linux/emacs/init.el
index 4d7e943..5868c41 100644
--- a/dotfiles-linux/emacs/init.el
+++ b/dotfiles-linux/emacs/init.el
@@ -1,3 +1,3 @@
-;; “Window” Management
+;; “Window” Management -*- lexical-binding: t -*-
(keymap-global-set "s-`" #'other-frame)
diff --git a/emacs/early-init.el b/emacs/early-init.el
index e21a5a2..7236069 100644
--- a/emacs/early-init.el
+++ b/emacs/early-init.el
@@ -1,3 +1,5 @@
+;; -*- lexical-binding: t -*-
+
(defconst my/dotfiles-directory
(file-truename (concat user-emacs-directory "../"))
"Directory containing all configuration files.")
diff --git a/emacs/functions.el b/emacs/functions.el
index b6e7f1f..21df594 100644
--- a/emacs/functions.el
+++ b/emacs/functions.el
@@ -1,4 +1,4 @@
-;; Path Functions
+;; Path Functions -*- lexical-binding: t -*-
(require 'xdg)
diff --git a/emacs/init.el b/emacs/init.el
index 6fa7fed..8059c10 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -1,4 +1,4 @@
-;; Path Configuration
+;; Path Configuration -*- lexical-binding: t -*-
(setopt abbrev-file-name (my/cache-file-name "abbrev_defs")
auto-save-list-file-prefix (my/cache-file-name "auto-save-list/")