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.

19 lines
406 B
Lua

require("rose-pine").setup({
variant = "moon"
})
function SetColour(colour)
-- colour = colour or "gruvbox"
colour = colour or "rose-pine"
vim.cmd(string.format("colorscheme %s", colour))
--vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
--vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
function UnsetColour()
vim.cmd("colorscheme default")
end
-- SetColour()