Closed luotom closed 3 years ago
Hi!
Try to set the font
frame parameter in the mini-frame-show-parameters
variable.
Also you can change font size for minibuffer like this:
(defun my-minibuffer-setup ()
(set (make-local-variable 'face-remapping-alist)
'((default :height 1.5))))
(add-hook 'minibuffer-setup-hook 'my-minibuffer-setup)
Hi!
Try to set the
font
frame parameter in themini-frame-show-parameters
variable.Also you can change font size for minibuffer like this:
(defun my-minibuffer-setup () (set (make-local-variable 'face-remapping-alist) '((default :height 1.5)))) (add-hook 'minibuffer-setup-hook 'my-minibuffer-setup)
thanks,It worked.
Hello author, I want to ask if I can change font size, and how to change font size. Thanks