From 025604fc2a7a644c90ede0420c3bfce4182de603 Mon Sep 17 00:00:00 2001 From: not Date: Thu, 23 Feb 2023 14:20:52 -0600 Subject: [PATCH] Created Recipes (markdown) --- Recipes.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Recipes.md diff --git a/Recipes.md b/Recipes.md new file mode 100644 index 0000000..cbb38b9 --- /dev/null +++ b/Recipes.md @@ -0,0 +1,20 @@ +## Transparent telescope.nvim + +> Can also be used with `disable_float_background = true` + +Remove selected background and use foreground + bright caret to distinguish current selection. + +Screenshot 2023-02-23 at 14 02 47 + +```lua +require("rose-pine").setup({ + highlight_groups = { + TelescopeBorder = { fg = "highlight_high", bg = "none" }, + TelescopeNormal = { bg = "none" }, + TelescopePromptNormal = { bg = "none" }, + TelescopeResultsNormal = { fg = "subtle", bg = "none" }, + TelescopeSelection = { fg = "text", bg = "base" }, + TelescopeSelectionCaret = { fg = "rose", bg = "rose" }, + }, +}) +```