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 . 80) default-frame-alist) (push '(height . 44) default-frame-alist)
another way to do it
(modify-all-frames-parameters '((tool-bar-lines . 0) (width . 80) (height . 44)))
- initial-frame-alist
-
- Variable.
- Config for the first window emacs starts with.
- Value is a Association List.
see emacs lisp manual for detail.
- default-frame-alist
-
- Variable.
- Config for any new window.
- Value is a Association List.
see emacs lisp manual for detail.