Last active
December 3, 2025 14:05
-
-
Save kiyoka/d43b82b9acf80387144c48de0af090ad to your computer and use it in GitHub Desktop.
markdown face and other
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
| ;; markdownモードで見出しの大きさに応じてフォントサイズを変える | |
| (custom-set-faces | |
| ;; custom-set-faces was added by Custom. | |
| ;; If you edit it by hand, you could mess it up, so be careful. | |
| ;; Your init file should contain only one such instance. | |
| ;; If there is more than one, they won't work right. | |
| '(markdown-header-face-1 ((t (:height 1.5 :weight bold)))) | |
| '(markdown-header-face-2 ((t (:height 1.3 :weight bold)))) | |
| '(markdown-header-face-3 ((t (:height 1.1 :weight bold))))) | |
| ;; mozc-modeless | |
| (when t | |
| (add-to-list 'load-path (expand-file-name "~/GitHub/mozc-modeless")) | |
| (require 'mozc-modeless) | |
| (global-mozc-modeless-mode 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment