From b5575985e2ba43f41ada18cf4640e8ef2637ff3c Mon Sep 17 00:00:00 2001 From: "m.fries" Date: Thu, 25 Jan 2024 10:53:45 +0100 Subject: [PATCH] Update size of default frame --- README.org | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.org b/README.org index 7af81e6..ee46a88 100644 --- a/README.org +++ b/README.org @@ -2,7 +2,6 @@ #+PROPERTY: header-args :results silent This is my configuration for the emacs editor. -Points of intrest: - Personal information (name, email) are stored in a separate ~personal.el~ file. - Machine specific settings are stored in a separate ~custom.el~ file. - Both files are loaded automatically. @@ -53,7 +52,7 @@ Packages provided by =straight.el= https://github.com/radian-software/straight.e *Set up the default frame look* #+begin_src emacs-lisp (setq default-frame-alist - (append (list '(width . 90) '(height . 60) + (append (list '(width . 90) '(height . 50) '(vertical-scroll-bars . nil) '(internal-border-width . 5)))) #+end_src