Emacs Init: Set Default Window (frame) Size
Set Default Window (Emacs Frame) Size
Put this in your Emacs Init File:
(push '(tool-bar-lines . 0) default-frame-alist) (push '(width . 90) default-frame-alist) (push '(height . 50) default-frame-alist)
- initial-frame-alist
-
- Variable.
- Config for the first window emacs starts with.
- Value is a Association List.
- default-frame-alist
-
- Variable.
- Config for any new window.
- Value is a Association List.