Skip to content

Instantly share code, notes, and snippets.

@kiyoka
Last active December 3, 2025 14:05
Show Gist options
  • Select an option

  • Save kiyoka/d43b82b9acf80387144c48de0af090ad to your computer and use it in GitHub Desktop.

Select an option

Save kiyoka/d43b82b9acf80387144c48de0af090ad to your computer and use it in GitHub Desktop.
markdown face and other
;; 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