1
0
Fork 0

fix(emacs): style markdown minimally

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-12-31 09:26:00 -05:00
parent aa4f515934
commit dcfe2d6efd
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -99,5 +99,15 @@
;; Copilot ;; Copilot
(define-key copilot-completion-map (kbd "<tab>") 'copilot-accept-completion) (define-key copilot-completion-map (kbd "<tab>") 'copilot-accept-completion)
;; Markdown
(custom-set-faces
'(markdown-header-face-1 ((t (:inherit nano-strong :height 1.3 :family "Inter"))))
'(markdown-header-face-2 ((t (:inherit nano-strong :height 1.2 :family "Inter"))))
'(markdown-header-face-3 ((t (:inherit nano-strong :height 1.1 :family "Inter"))))
'(markdown-header-face-4 ((t (:inherit nano-strong :height 1.0 :family "Inter"))))
'(markdown-header-face-5 ((t (:inherit nano-strong :height 0.9 :family "Inter"))))
'(markdown-header-face-6 ((t (:inherit nano-strong :height 0.8 :family "Inter")))))
(add-hook 'markdown-mode-hook #'markdown-toggle-fontify-code-blocks-natively)
(provide 'misc) (provide 'misc)
;;; misc.el ends here ;;; misc.el ends here