From 06616c4262c5587685283745a1e3f33a043279c4 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 27 Feb 2022 00:05:37 +0900 Subject: feat(colors): move LSP highlights to colors --- fnl/nvrc/colors.fnl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'fnl/nvrc/colors.fnl') diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index 1392a9f..b231e4e 100644 --- a/fnl/nvrc/colors.fnl +++ b/fnl/nvrc/colors.fnl @@ -50,6 +50,20 @@ (highlight :NvimInternalError {:fg (. colors :red)}) (highlight :VertSplit {:fg (. colors :grey2)}) + ; LSP + (highlight :DiagnosticError {:fg (. colors :red)}) + (highlight :DiagnosticWarn {:fg (. colors :yellow)}) + (highlight :DiagnosticInformation {:fg (. colors :green)}) + (highlight :DiagnosticHint {:fg (. colors :grey)}) + (highlight :LspReferenceRead {:underline true}) + (highlight :LspReferenceText {:underline true}) + (highlight :LspReferenceWrite {:underline true}) + (highlight :LspSemantic_type {:link :Include}) + (highlight :LspSemantic_function {:link :Identifier}) + (highlight :LspSemantic_struct {:link :Number}) + (highlight :LspSemantic_variable {:bg :gray}) + (highlight :LspSemantic_keyword {:link :Structure}) + ; Lir (highlight :LirFloatNormal {:bg (. colors :black)}) (highlight :LirDir {:fg (. colors :skyblue)}) -- cgit 1.4.1