From d508e71270ea4db6ad64f2694fb243277f091102 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Fri, 2 May 2025 23:37:32 +0200 Subject: [PATCH] fix(onedark): change telescope highlights --- lua/ow/plugins/onedark.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/ow/plugins/onedark.lua b/lua/ow/plugins/onedark.lua index 04793e5..8943a18 100644 --- a/lua/ow/plugins/onedark.lua +++ b/lua/ow/plugins/onedark.lua @@ -12,6 +12,10 @@ return { TabLineSel = { fg = c.fg, bg = c.bg0 }, EndOfBuffer = { fg = "NONE", bg = "NONE" }, NvimTreeIndentMarker = { fg = c.bg3 }, + TelescopeBorder = { fg = c.orange }, + TelescopePromptBorder = { fg = c.grey }, + TelescopeResultsBorder = { fg = c.grey }, + TelescopePreviewBorder = { fg = c.grey }, } require("onedark").set_options("highlights", highlights)