Created Recipes (markdown)

not 2023-02-23 14:20:52 -06:00
commit 025604fc2a

20
Recipes.md Normal file

@ -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.
<img width="1440" alt="Screenshot 2023-02-23 at 14 02 47" src="https://user-images.githubusercontent.com/1474821/221020548-c621dbcd-e593-4c4e-b825-b0bcf3907f79.png">
```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" },
},
})
```