blob: caea7ad394704c0e2c0bd53776664dea1cee5e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
return {
{
'rose-pine/neovim',
lazy = false,
priority = 1000,
config = function()
require('rose-pine').setup({
variant = 'dawn',
highlight_groups = {
TelescopePromptNormal = { fg = 'base', bg = 'rose' },
TelescopePromptBorder = { bg = 'rose' },
TelescopePromptTitle = { fg = 'base' },
TelescopePromptPrefix = { fg = 'base' },
TelescopePromptCounter = { fg = 'base' },
},
})
vim.cmd('colorscheme rose-pine')
end,
},
}
|