From d8f2fe9f0c7d04a9a2ed2bf9cd5c2b312fa2b682 Mon Sep 17 00:00:00 2001 From: not Date: Thu, 21 Sep 2023 14:21:26 -0500 Subject: [PATCH] Updated Recipes (markdown) --- Recipes.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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