From ea0d8dbc8e126d38cbc12c8ed0ee6deec4e95dbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20R=C3=BCberg?= Date: Sat, 30 Mar 2024 01:51:22 +0100 Subject: [PATCH] feat: add highlights for nvim-treesitter-context (#260) --- lua/rose-pine.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index db6cdba..554dcf3 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -773,6 +773,10 @@ local function set_highlights() -- github/copilot.vim CopilotSuggestion = { fg = palette.muted, italic = styles.italic }, + + -- nvim-treesitter/nvim-treesitter-context + TreesitterContext = { bg = "overlay" }, + TreesitterContextLineNumber = { fg = "rose", bg = "overlay" } } local transparency_highlights = { DiagnosticVirtualTextError = { fg = groups.error },