summaryrefslogtreecommitdiff
path: root/.config/emacs
diff options
context:
space:
mode:
Diffstat (limited to '.config/emacs')
-rw-r--r--.config/emacs/early-init.el4
-rw-r--r--.config/emacs/init.el6
2 files changed, 5 insertions, 5 deletions
diff --git a/.config/emacs/early-init.el b/.config/emacs/early-init.el
index b74ba18..85f13b0 100644
--- a/.config/emacs/early-init.el
+++ b/.config/emacs/early-init.el
@@ -1,4 +1,4 @@
-;; -*- lexical-binding: t; -*-
+;;; early-init.el --- Emacs early init file -*- lexical-binding: t; -*-
(defconst 1-KiB 1024
"The number of bytes in 1 kibibyte")
@@ -55,7 +55,7 @@
(setq read-process-output-max
(let ((pipe-size-file "/proc/sys/fs/pipe-max-size"))
- (if (file-exists-p pipe-size-file)
+ (if (file-exists-p pipe-size-file)
(with-temp-buffer
(insert-file-contents pipe-size-file)
(number-at-point))
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
index 42c100c..3884d4e 100644
--- a/.config/emacs/init.el
+++ b/.config/emacs/init.el
@@ -1,4 +1,4 @@
-;; -*- lexical-binding: t; -*-
+;;; init.el --- Emacs configuration file -*- lexical-binding: t; -*-
;;; Preamble
(setq user-full-name "Thomas Voss")
@@ -510,8 +510,8 @@ existing grammars."
. ("clangd" "--header-insertion=never")))))
(use-package eglot-booster
- :after eglot
- :config (eglot-booster-mode))
+ :after eglot
+ :config (eglot-booster-mode))
;;; Automatically Create Directories
(defun x-auto-create-directories (original-function filename &rest arguments)