From 5569808250707a5ad2f64481b46e20e4242ee0fa Mon Sep 17 00:00:00 2001 From: jjanzen Date: Wed, 26 Mar 2025 13:24:21 -0500 Subject: [PATCH] system changes --- common/.config/emacs/early-init.el.org | 2 +- common/.config/emacs/init.el.org | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/.config/emacs/early-init.el.org b/common/.config/emacs/early-init.el.org index 82afc2e..682a105 100644 --- a/common/.config/emacs/early-init.el.org +++ b/common/.config/emacs/early-init.el.org @@ -28,7 +28,7 @@ Clean up interface by removing unnecessary elements. Set up fonts. I use Source Code Pro (Nerd Font) for =monospace= and Computer Modern for /variable width/. #+begin_src emacs-lisp - (defvar jj/mono-font "Atkinson Hyperlegible Mono-11:weight=thin") + (defvar jj/mono-font "Atkinson Hyperlegible Mono-14:weight=thin") (defvar jj/var-font "CMU Serif-18") (add-to-list 'default-frame-alist `(font . ,jj/mono-font)) diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index e91e2c0..87dfb36 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -458,10 +458,10 @@ Define functions for my =eshell= prompt. =jj/shorten-path-str= takes only the fi " " ""))) (concat (propertize (concat " " git-branch) 'font-lock-face '(:foreground "blue")) - (propertize outofsync 'font-lock-face '(:foreground "dark green")) - (propertize staged 'font-lock-face '(:foreground "orange")) - (propertize unstaged 'font-lock-face '(:foreground "magenta")) - (propertize untracked 'font-lock-face '(:foreground "dark red")))))) + (propertize outofsync 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "dark green")) + (propertize staged 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "orange")) + (propertize unstaged 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "magenta")) + (propertize untracked 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "dark red")))))) #+end_src Install and configure =eat= as a terminal emulator in Emacs with =eshell= as a shell.