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

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

vim.cmd.colorscheme('rose-pine')
vim.api.nvim_set_hl(0, '@lsp.type.macro', { link = 'Macro' })