diff options
-rw-r--r-- | fnl/nvrc/colors.fnl | 9 |
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 |