From 1fcdcbcd5593a43468415fa164d87aca027c4413 Mon Sep 17 00:00:00 2001 From: Null Chilly <56817415+nullchilly@users.noreply.github.com> Date: Mon, 10 Jul 2023 23:20:57 +0700 Subject: [PATCH] feat(catppuccin): use upstream nvchad style (#855) --- lua/modules/configs/ui/catppuccin.lua | 37 +-------------------------- 1 file changed, 1 insertion(+), 36 deletions(-) diff --git a/lua/modules/configs/ui/catppuccin.lua b/lua/modules/configs/ui/catppuccin.lua index ad1a90c5a..78ba3e10e 100644 --- a/lua/modules/configs/ui/catppuccin.lua +++ b/lua/modules/configs/ui/catppuccin.lua @@ -83,7 +83,7 @@ return function() semantic_tokens = true, symbols_outline = false, telekasten = false, - telescope = true, + telescope = { enabled = true, style = "nvchad" }, treesitter_context = true, ts_rainbow = false, vim_sneak = false, @@ -148,41 +148,6 @@ return function() TroubleNormal = { bg = transparent_background and cp.none or cp.base }, -- For telescope.nvim - TelescopeBorder = { - fg = transparent_background and cp.blue or cp.mantle, - bg = transparent_background and cp.none or cp.mantle, - }, - TelescopePromptBorder = { - fg = transparent_background and cp.blue or cp.surface0, - bg = transparent_background and cp.none or cp.surface0, - }, - TelescopePromptNormal = { - fg = cp.text, - bg = transparent_background and cp.none or cp.surface0, - }, - TelescopePromptPrefix = { - fg = cp.flamingo, - bg = transparent_background and cp.none or cp.surface0, - }, - TelescopeNormal = { - bg = transparent_background and cp.none or cp.mantle, - }, - TelescopePreviewTitle = { - fg = transparent_background and cp.green or cp.base, - bg = transparent_background and cp.none or cp.green, - }, - TelescopePromptTitle = { - fg = transparent_background and cp.red or cp.base, - bg = transparent_background and cp.none or cp.red, - }, - TelescopeResultsTitle = { - fg = cp.mantle, - bg = transparent_background and cp.none or cp.mantle, - }, - TelescopeSelection = { - fg = transparent_background and cp.subtext0 or cp.text, - bg = transparent_background and cp.none or cp.surface0, - }, TelescopeResultsDiffAdd = { fg = cp.green }, TelescopeResultsDiffChange = { fg = cp.yellow }, TelescopeResultsDiffDelete = { fg = cp.red },