Skip to content

Commit

Permalink
Merge pull request #10 from tkita/set-japanese-style
Browse files Browse the repository at this point in the history
月と曜日の表記を日本の書式とする設定例を追加
  • Loading branch information
syohex authored Sep 12, 2020
2 parents e27a8b3 + d60b4dc commit 36f1ba5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,13 @@

“きょう”をマークするには以下の設定を追加します。
(add-hook 'calendar-today-visible-hook 'calendar-mark-today)

月の表記を日本の書式とするには以下の設定を追加します。
(setq calendar-month-name-array ["1月" "2月" "3月" "4月" "5月" "6月"
"7月" "8月" "9月" "10月" "11月" "12月"]
calendar-month-header '(propertize
(format "%d年 %s" year (calendar-month-name month))
'font-lock-face 'calendar-month-header))

曜日の表記を日本の書式とするには以下の設定を追加します。
(setq calendar-day-header-array ["日" "月" "火" "水" "木" "金" "土"])

0 comments on commit 36f1ba5

Please sign in to comment.