summaryrefslogtreecommitdiffstats
path: root/nvim-primeagen/after/plugin/colors.lua
blob: fe97b1bb3d9b422b54315cfe769b75dbe04421d1 (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()