From 11ced11840174b5e5ed5602de2bf5f69394bce65 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 17 Sep 2023 10:22:52 +0900 Subject: feat(colors): add ts-comment colors --- fnl/nvrc/colors.fnl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'fnl/nvrc/colors.fnl') diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index fa341b1..87a406f 100644 --- a/fnl/nvrc/colors.fnl +++ b/fnl/nvrc/colors.fnl @@ -51,6 +51,13 @@ ; Leap (highlight! :LeapMatch {:fg (. colors :selection) :underline true :bold true :nocombine true}) (highlight! :LeapLabelPrimary {:fg :black :bg (. colors :selection) :bold true}) - (highlight! :LeapLabelSecondary {:fg :black :bg (. colors :accent) :bold true})) + (highlight! :LeapLabelSecondary {:fg :black :bg (. colors :accent) :bold true}) + + ; Treesitter extensions + (highlight! "@text.note" {:fg (. colors :skyblue) :bold true}) + (highlight! "@text.warning" {:fg (. colors :yellow) :bold true}) + (highlight! "@text.danger" {:fg (. colors :red) :bold true}) + + ) colors -- cgit 1.4.1