From 007c94cb87caa095147f878e3b5bb9c5a33352be Mon Sep 17 00:00:00 2001 From: Fitrah Muhammad Date: Mon, 11 Apr 2022 18:37:36 +0800 Subject: [PATCH] add `LspReferenceXXX` highlight group --- lua/rose-pine/theme.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index d0da065..b798bb6 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -240,6 +240,11 @@ function M.get(config) TSVariable = { fg = p.text, style = styles.italic }, TSVariableBuiltin = { fg = p.love }, + -- vim.lsp.buf.document_highlight() + LspReferenceText = { bg = p.highlight_med }, + LspReferenceRead = { bg = p.highlight_med }, + LspReferenceWrite = { bg = p.highlight_med }, + -- romgrk/barbar.nvim BufferCurrent = { fg = p.text, bg = p.overlay }, BufferCurrentIndex = { fg = p.text, bg = p.overlay },