Adjust font size in Emacs

This commit is contained in:
2025-04-05 19:43:50 +01:00
parent 86fdf93e34
commit cc87619119
2 changed files with 4 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ Let's setup a few absolute essentials:
(global-auto-revert-mode) (global-auto-revert-mode)
(set-face-attribute 'default nil :height (set-face-attribute 'default nil :height
(pcase (system-name) (pcase (system-name)
("rhmaiden" 130) ("rhmaiden" 120)
(_ 120)))) (_ 120))))
#+end_src #+end_src
* Custom functionality and libraries * Custom functionality and libraries

View File

@@ -80,8 +80,8 @@
'(link-visited ((t (:foreground "violet" :inherit (link))))) '(link-visited ((t (:foreground "violet" :inherit (link)))))
'(match ((t (:background "RoyalBlue3")))) '(match ((t (:background "RoyalBlue3"))))
'(minibuffer-prompt ((t (:foreground "cyan")))) '(minibuffer-prompt ((t (:foreground "cyan"))))
'(mode-line ((t (:box (:line-width 1 :color "white") :foreground "LightSkyBlue" `(mode-line ((t (:box (:line-width 1 :color "white") :foreground "LightSkyBlue"
:background "black" :inherit (default) :height 130)))) :background "black" :inherit (default) :height 120))))
'(mode-line-buffer-id ((t (:weight bold)))) '(mode-line-buffer-id ((t (:weight bold))))
'(mode-line-emphasis ((t (:weight bold)))) '(mode-line-emphasis ((t (:weight bold))))
'(mode-line-inactive ((t (:box (:line-width 1 :color "grey10") :weight light '(mode-line-inactive ((t (:box (:line-width 1 :color "grey10") :weight light
@@ -127,7 +127,7 @@
'(region ((t (:extend t :background "grey25")))) '(region ((t (:extend t :background "grey25"))))
'(secondary-selection ((t (:extend t :background "SkyBlue4")))) '(secondary-selection ((t (:extend t :background "SkyBlue4"))))
'(shadow ((t (:foreground "grey70")))) '(shadow ((t (:foreground "grey70"))))
'(show-paren-match ((t (:foreground unspecified :foreground "#55ec55" '(show-paren-match ((t (:foreground unspecified :background "green4"
:weight bold)))) :weight bold))))
'(show-paren-mismatch ((t (:foreground "#01323d" :background "#ec1111" '(show-paren-mismatch ((t (:foreground "#01323d" :background "#ec1111"
:weight bold)))) :weight bold))))