A low-contrast pink colorscheme for neovim inspired by zenbones, rose-pine, and lackluster, built using lush.nvim.
Plugin spec for LazyVim:
return {
"anAcc22/sakura.nvim",
dependencies = "rktjmp/lush.nvim",
config = function()
vim.opt.background = "dark" -- or "light"
vim.cmd('colorscheme sakura') -- sets the colorscheme
end
}Plugin spec for Nuwa.nvim:
-- Installing the package.
nuwa.installPackage(
"https://github.com",
"rktjmp",
"lush.nvim"
)
-- Installing the package.
nuwa.installPackage(
"https://github.com",
"anAcc22",
"sakura.nvim"
)
-- Setting the background.
vim.opt.background = "dark" -- or "light"
-- Setting the colorscheme.
vim.cmd.colorscheme("sakura")
