From 49dcb6ca2c011ec931be25ced436b28051c5eac5 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Mon, 29 Apr 2024 17:55:59 -0400 Subject: [PATCH] fix(emacs): change markdown code font colour Signed-off-by: Lucas Sta Maria --- .emacs.d/init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 4238653..f4d8e5a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -159,7 +159,9 @@ (use-package rust-mode :straight t) (use-package rustic :straight t) -(use-package markdown-mode :straight t) +(use-package markdown-mode :straight t + :custom-face + (markdown-inline-code-face ((t (:inherit nano-salient))))) (use-package rjsx-mode :straight t) (use-package just-mode :straight t) (use-package justl :straight t)