Skip to content

Instantly share code, notes, and snippets.

@tsuchm
Created January 20, 2025 12:55
Show Gist options
  • Save tsuchm/b3791c75170dcdead3066ad0354031e4 to your computer and use it in GitHub Desktop.
Save tsuchm/b3791c75170dcdead3066ad0354031e4 to your computer and use it in GitHub Desktop.
;; 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