From c63140cbc86cc9847c438fbd2f712823087fc408 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Wed, 4 Oct 2023 19:58:04 +0200 Subject: [PATCH] Set default frame alist --- bundle/bundle--gui.el | 12 +++++++----- bundle/custom_gnu.el | 6 ------ 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/bundle/bundle--gui.el b/bundle/bundle--gui.el index f2d119c2..ab089b3a 100644 --- a/bundle/bundle--gui.el +++ b/bundle/bundle--gui.el @@ -1,3 +1,10 @@ +(setq default-frame-alist + '((tab-bar-lines . 1) + (font . "MonoLisa-11") + (width . 85) + (height . 55) + (vertical-scroll-bars))) + (use-package all-the-icons :if (display-graphic-p) :commands all-the-icons-install-fonts @@ -9,11 +16,6 @@ :if (display-graphic-p) :hook (dired-mode . all-the-icons-dired-mode)) -;; (use-package doom-themes -;; :init (setq doom-themes-enable-bold t ; if nil, bold is universally disabled -;; doom-themes-enable-italic t) ; if nil, italics is universally disabled -;; (load-theme 'doom-one t)) - (use-package doom-modeline :init (doom-modeline-mode 1) :custom (doom-modeline-height 0)) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 26487927..f8cf7e79 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -10,12 +10,6 @@ [default default default italic underline success warning error]) '(backup-directory-alist '(("." . "~/.backup_filez"))) '(bookmark-default-file "~/bookmarks.el") - '(default-frame-alist - '((tab-bar-lines . 1) - (font . "MonoLisa-11") - (width . 85) - (height . 55) - (alpha . 100))) '(delete-selection-mode nil) '(diary-file "~/Documents/org/diary") '(doc-view-resolution 150)