summaryrefslogtreecommitdiff
path: root/.config/nvim/after/plugin/colors.lua
blob: 779c60db401b60fe24a7d8f78b7d3948a5889dac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local nohl = { bg = "surface" }

require('rose-pine').setup {
	styles = {
		transparency = true,
	},
	highlight_groups = {
		Pmenu = nohl,
		StatusLine = nohl,
		StatusLineNC = nohl,
	},
}

vim.cmd.colorscheme('rose-pine')