diff options
author | noa | 2024-10-09 15:13:03 +0800 |
---|---|---|
committer | noa | 2024-10-09 15:13:03 +0800 |
commit | b0882f3d4c6d54d611ee5d27c0fe2d1bf771c50d (patch) | |
tree | 5a4c9a9fef395fa8aea5da013caa7199ffe4e9ba /emacs | |
parent | 42d657ef778ae3260aea4f2d4682be24d0fe89a9 (diff) |
Use serif font as default
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index d30b7e1..c20ebdb 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -53,8 +53,8 @@ ;;; Fonts ;; Using a proportional font is the right way to do things, but emacs is very old and comes from a time before the innovation of legibility. As a result, there are some things that require a monospaced font, so i set one here. (custom-set-faces - '(default ((t (:family "Noto Sans" :height 120)))) - '(variable-pitch ((t (:family "Noto Sans" :height 120)))) + '(default ((t (:family "Noto Serif" :height 120)))) + '(variable-pitch ((t (:family "Noto Serif" :height 120)))) '(fixed-pitch ((t (:family "Noto Sans Mono" :height 120))))) ;; Use simplified not korean hanzi |