Skip to content
not edited this page Feb 23, 2023 · 9 revisions

Lovely statusline

Feel free to change "love" to your favourite Rosé Pine accent colour

Screenshot 2023-02-23 at 14 31 40
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

Remove selected background and use foreground + bright caret to distinguish current selection.

Screenshot 2023-02-23 at 14 02 47
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" },
	},
})
Clone this wiki locally