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.
14 lines
287 B
Lua
14 lines
287 B
Lua
2 years ago
|
require("rose-pine").setup({
|
||
|
variant = "moon"
|
||
|
})
|
||
|
|
||
|
function SetColour(colour)
|
||
|
colour = colour or "gruvbox"
|
||
|
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
|
||
|
|
||
|
SetColour()
|