diff --git a/Recipes.md b/Recipes.md index 561f13f..6160db9 100644 --- a/Recipes.md +++ b/Recipes.md @@ -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" }, + }, +}) +``` \ No newline at end of file