system changes

This commit is contained in:
jjanzen 2025-03-26 13:24:21 -05:00
parent 9ab3f4c6f7
commit 5569808250
2 changed files with 5 additions and 5 deletions

View file

@ -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/. Set up fonts. I use Source Code Pro (Nerd Font) for =monospace= and Computer Modern for /variable width/.
#+begin_src emacs-lisp #+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") (defvar jj/var-font "CMU Serif-18")
(add-to-list 'default-frame-alist (add-to-list 'default-frame-alist
`(font . ,jj/mono-font)) `(font . ,jj/mono-font))

View file

@ -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")) (concat (propertize (concat " " git-branch) 'font-lock-face '(:foreground "blue"))
(propertize outofsync 'font-lock-face '(:foreground "dark green")) (propertize outofsync 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "dark green"))
(propertize staged 'font-lock-face '(:foreground "orange")) (propertize staged 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "orange"))
(propertize unstaged 'font-lock-face '(:foreground "magenta")) (propertize unstaged 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "magenta"))
(propertize untracked 'font-lock-face '(:foreground "dark red")))))) (propertize untracked 'font-lock-face '(:font "Symbols Nerd Font Mono" :foreground "dark red"))))))
#+end_src #+end_src
Install and configure =eat= as a terminal emulator in Emacs with =eshell= as a shell. Install and configure =eat= as a terminal emulator in Emacs with =eshell= as a shell.