You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/after/plugin/colors.lua

16 lines
317 B
Lua

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()
-- vim.cmd [[ ThematicRandom ]]