diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-08 12:11:48 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-08 12:11:48 +0200 |
commit | b2e1ba52ecd4f08d1bd62c85f73ea97ecc892706 (patch) | |
tree | 94c0809960effd976a3820d1452a4a831249a3bc /.config | |
parent | f8f78ed924e86b44df73f72f235ae0fdc49b7cf9 (diff) |
emacs: Formatting
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/early-init.el | 4 | ||||
-rw-r--r-- | .config/emacs/init.el | 6 |
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) |