next up previous contents
Next: Menus and Toolbars Up: Customizing your Environment Previous: Fonts and Colors   Contents

Default Window Parameters

Add the following to your .emacs file to set a default new window size if you constntly find yourself resizing them as they appear.

(setq default-frame-alist
 '(
; frame width and height
  (width    . 80)
  (height   . 40)
  )
)



Randall Wood 2011-03-31