From 24dac72dc9951aad9bc3093ba58ed68a5fc13787 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 11 Oct 2022 06:05:28 -0500 Subject: [PATCH] feat(nvim): improve telescope highlights --- .../primary/config/lua/plugins/plugins.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua b/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua index 5d75940b..b66906c8 100755 --- a/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua @@ -144,11 +144,11 @@ return packer.startup({ CmpCustomSelectionSpell = { fg = colors.fujiWhite, bg = colors.waveRed }, TelescopeNormal = { bg = colors.sumiInk1 }, - TelescopeBorder = { bg = colors.sumiInk1 }, - TelescopePromptBorder = { bg = colors.sumiInk0 }, + TelescopeBorder = { bg = colors.sumiInk1, fg = colors.sumiInk1 }, + TelescopePromptBorder = { bg = colors.sumiInk0, fg = colors.sumiInk0 }, TelescopePromptTitle = { fg = colors.sumiInk0, bg = colors.oniViolet }, TelescopePreviewTitle = { fg = colors.sumiInk0, bg = colors.sakuraPink }, - TelescopePreviewBorder = { bg = colors.sumiInk2 }, + TelescopePreviewBorder = { bg = colors.sumiInk2, fg = colors.sumiInk2 }, TelescopePreviewNormal = { bg = colors.sumiInk2 }, TelescopeResultsTitle = { fg = "NONE", bg = "NONE" },