1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
return {
{
"uga-rosa/ccc.nvim",
event = { "BufReadPost", "BufNewFile" },
opts = {
highlighter = {
auto_enable = true,
lsp = true,
},
},
},
{
"pml68/rosepine-tmuxed",
name = "rose-pine",
priority = 1000,
lazy = false,
config = function()
require("rose-pine").setup({
styles = {
transparency = true,
italic = false,
},
highlight_groups = {
StatusLine = { fg = "iris", bg = "iris", blend = 25 },
StatusLineNC = { fg = "subtle", bg = "surface" },
},
})
vim.cmd("colorscheme rose-pine")
end
},
}
|