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

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

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