about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-09-17 10:22:52 +0900
committersefidel <contact@sefidel.net>2023-09-17 10:22:52 +0900
commit11ced11840174b5e5ed5602de2bf5f69394bce65 (patch)
tree20ad70b17913ae33550937282ab524f39bde9065 /fnl/nvrc/colors.fnl
parent3106beb2c5a7662af7f36038065e195a979db044 (diff)
downloadnvimrc-11ced11840174b5e5ed5602de2bf5f69394bce65.tar.gz
nvimrc-11ced11840174b5e5ed5602de2bf5f69394bce65.zip
feat(colors): add ts-comment colors
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl9
1 files changed, 8 insertions, 1 deletions
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