aboutsummaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl')
-rw-r--r--fnl/nvrc/colors.fnl6
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index b3f2602..85df856 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -45,6 +45,8 @@
(highlight! :DiagnosticWarn {:fg (. colors :yellow)})
(highlight! :DiagnosticInfo {:fg (. colors :green)})
(highlight! :DiagnosticHint {:fg (. colors :graphite)})
+ ; https://github.com/stsewd/tree-sitter-comment/issues/22
+ (highlight! "@lsp.type.comment" {})
(highlight! :DiagnosticSignError {:fg (. colors :red) :bg (. colors :light_bg)})
(highlight! :DiagnosticSignWarn {:fg (. colors :yellow) :bg (. colors :light_bg)})
@@ -59,8 +61,6 @@
; 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})
-
- )
+ (highlight! "@text.danger" {:fg (. colors :red) :bold true}))
colors