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" }, + }, +}) +```