Updated Recipes (markdown)

not 2023-09-21 14:21:26 -05:00
commit d8f2fe9f0c

@ -37,3 +37,29 @@ require("rose-pine").setup({
},
})
```
## Borderless telescope.nvim
![](https://user-images.githubusercontent.com/314453/267959977-23f287df-e69b-4636-8da7-b82e119e3468.png)
![](https://user-images.githubusercontent.com/314453/267960069-3a967e62-c959-4734-9d45-f4f6cf402064.png)
```lua
require("rose-pine").setup({
highlight_groups = {
TelescopeBorder = { fg = "overlay", bg = "overlay" },
TelescopeNormal = { fg = "subtle", bg = "overlay" },
TelescopeSelection = { fg = "text", bg = "highlight_med" },
TelescopeSelectionCaret = { fg = "love", bg = "highlight_med" },
TelescopeMultiSelection = { fg = "text", bg = "highlight_high" },
TelescopeTitle = { fg = "base", bg = "love" },
TelescopePromptTitle = { fg = "base", bg = "pine" },
TelescopePreviewTitle = { fg = "base", bg = "iris" },
TelescopePromptNormal = { fg = "text", bg = "surface" },
TelescopePromptBorder = { fg = "surface", bg = "surface" },
},
})
```