mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Created Recipes (markdown)
parent
cd390a5cc6
commit
025604fc2a
1 changed files with 20 additions and 0 deletions
20
Recipes.md
Normal file
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" },
|
||||
},
|
||||
})
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue