diff --git a/Recipes.md b/Recipes.md index cbb38b9..112a7e0 100644 --- a/Recipes.md +++ b/Recipes.md @@ -1,3 +1,22 @@ +## Lovely statusline + +> Feel free to change "love" to your favourite Rosé Pine accent colour + +Screenshot 2023-02-23 at 14 31 40 + + +```lua +vim.opt.laststatus = 2 -- Or 3 for global statusline +vim.opt.statusline = " %f %m %= %l:%c ♥ " + +require("rose-pine").setup({ + highlight_groups = { + StatusLine = { fg = "love", bg = "love", blend = 10 }, + StatusLineNC = { fg = "subtle", bg = "surface" }, + }, +}) +``` + ## Transparent telescope.nvim > Can also be used with `disable_float_background = true`