From b009ef099e19350d94fc6ec83b99b3513c366a69 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 11 Oct 2022 05:29:24 -0500 Subject: [PATCH] feat(nvim): improve telescope highlights --- .../primary/config/lua/plugins/plugins.lua | 7 ++++--- 1 file changed, 4 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..975089e8 100755 --- a/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/plugins.lua @@ -144,11 +144,12 @@ return packer.startup({ CmpCustomSelectionSpell = { fg = colors.fujiWhite, bg = colors.waveRed }, TelescopeNormal = { bg = colors.sumiInk1 }, - TelescopeBorder = { bg = colors.sumiInk1 }, - TelescopePromptBorder = { bg = colors.sumiInk0 }, + TelescopeBorder = { fg = colors.sumiInk1, bg = colors.sumiInk1 }, + TelescopePromptBorder = { fg = colors.sumiInk0, bg = colors.sumiInk0 }, + TelescopePreviewBorder = { fg = colors.sumiInk2, bg = colors.sumiInk2 }, + TelescopeResultsBorder = { fg = colors.sumiInk2, bg = colors.sumiInk2 }, TelescopePromptTitle = { fg = colors.sumiInk0, bg = colors.oniViolet }, TelescopePreviewTitle = { fg = colors.sumiInk0, bg = colors.sakuraPink }, - TelescopePreviewBorder = { bg = colors.sumiInk2 }, TelescopePreviewNormal = { bg = colors.sumiInk2 }, TelescopeResultsTitle = { fg = "NONE", bg = "NONE" },