How do I set the size of Emacs’ window?
If you want to change the size according to resolution you can do something like this (adjusting the preferred width and resolutions according to your specific needs): (defun set-frame-size-according-to-resolution () (interactive) (if window-system (progn ;; use 120 char wide window for largeish displays ;; and smaller 80 column windows for smaller displays ;; pick whatever … Read more