blob: dcf868cc1c7e99c8ed3f0c70a8bba73607d9c93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; early-init.el --- Early startup settings -*- lexical-binding: t; -*-
;;; Commentary:
;; Keep this file limited to settings that must exist before the first frame.
;;; Code:
(dolist (parameter '((width . 140)
(height . 42)))
(add-to-list 'default-frame-alist parameter)
(add-to-list 'initial-frame-alist parameter))
;;; early-init.el ends here
|