-
-
Notifications
You must be signed in to change notification settings - Fork 156
Recipes
not edited this page Feb 23, 2023
·
9 revisions
Feel free to change "love" to your favourite Rosé Pine accent colour
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" },
},
})
Can also be used with
disable_float_background = true
Remove selected background and use foreground + bright caret to distinguish current selection.
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" },
},
})