Created
January 20, 2025 12:55
-
-
Save tsuchm/b3791c75170dcdead3066ad0354031e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; PlemoJPフォント https://github.com/yuru7/PlemolJP の Light を標準フォントとして使う場合の設定 | |
;; | |
;; ~/.Xresources には以下のように書く. | |
;; Emacs.Font: PlemolJP Console Light-18 | |
;; | |
;; これで PlemolJP Console Light が全体に使われるようになる. | |
;; 個人的な好みとして,bold / bold-italic が少し太すぎたので,以下のように補充設定をして調節しておく. | |
(when (display-graphic-p) | |
(set-face-attribute 'bold nil :family "PlemolJP Console Medium" :weight 'normal) | |
(set-face-attribute 'bold-italic nil :family "PlemolJP Console Medium" :weight 'normal :slant 'italic)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment