For new frames, you can configure the parameters in a variable default-frame-alist, for example, as follows:
(add-to-list 'default-frame-alist '(height . 48))
I have the following code in my configuration:
(add-to-list 'default-frame-alist '(font . "Consolas-13"))
(add-to-list 'default-frame-alist '(height . 48))
(add-to-list 'default-frame-alist '(width . 145))
(add-to-list 'default-frame-alist '(background-color . "grey92"))
(setq initial-frame-alist default-frame-alist)
(setq special-display-frame-alist default-frame-alist)
to configure settings for all frames ...
source
share