12 lines
270 B
EmacsLisp
12 lines
270 B
EmacsLisp
|
;;; early-init.el --- Very early init -*- lexical-binding: t; -*-
|
||
|
|
||
|
;;; Commentary:
|
||
|
|
||
|
;;; Code:
|
||
|
|
||
|
(customize-set-variable 'package-enable-at-startup nil
|
||
|
"Don't initialize packages.")
|
||
|
|
||
|
(provide 'early-init)
|
||
|
;;; early-init.el ends here
|