From 3afd9f9c449b5a2c8387a75cbac1ef4e1f91f837 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 30 Apr 2025 10:01:35 +1200 Subject: [PATCH] emacs: change accent and font size --- .emacs.d/init.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9b5c4bc..aabea0a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -311,14 +311,15 @@ value `italic'." (let ((fixedpt "Roboto Mono") ( varpt "Roboto") - ( accent (catppuccin-get-color 'yellow)) + ( accent (catppuccin-get-color 'blue)) (bground (catppuccin-get-color 'base)) ( darker (catppuccin-get-color 'mantle)) (darkest (catppuccin-get-color 'crust)) ( text (catppuccin-get-color 'text))) - (add-to-list 'default-frame-alist (cons 'font fixedpt)) + (add-to-list 'default-frame-alist `(font . ,fixedpt)) + (add-to-list 'default-frame-alist '(height . 36)) (set-face-attributes - `((default :height 140) + `((default :height 112) (fixed-pitch :family ,fixedpt) (variable-pitch :family ,varpt) (font-lock-comment-face :slant italic)