-- -- COLORS -- -- vim.opt.termguicolors = true local rp = require('rose-pine') rp.setup({ --- @usage 'auto'|'main'|'moon'|'dawn' variant = 'auto', disable_italics = true, }) function SetColor(color) color = color or "rose-pine" -- have a default value vim.cmd.colorscheme(color) vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) vim.api.nvim_set_hl(0, "ColorColumn", { bg = "#330000" }) end SetColor() -- run at startup