Config: add lexical-binding: t to all files.

This commit is contained in:
User
2026-03-30 12:35:53 +08:00
parent 8e0d0a7551
commit 9499ebd704
13 changed files with 91 additions and 25 deletions

View File

@@ -1,3 +1,9 @@
;;; early-init.el --- early-init.el -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(setq package-enable-at-startup nil)
(setq inhibit-startup-screen t) ; 禁用开始菜单
@@ -14,3 +20,5 @@
(add-to-list 'initial-frame-alist '(fullscreen . maximized))
;; 之后新建的窗口也默认最大化
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;;; early-init.el ends here