summaryrefslogtreecommitdiffstats
path: root/nvim-primeagen/after/plugin/colors.lua
blob: 92c85836df12b8eb605a7be29b5f0cea04eaadac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require('rose-pine').setup({
    disable_background = true
})

function ColorMyPencils(color)
	color = color or "rose-pine"
	vim.cmd.colorscheme(color)

	vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
	vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })

end

ColorMyPencils()