ajs-nvim/lua/plugins/themes.lua

16 lines
472 B
Lua
Raw Normal View History

return {
2024-03-18 13:06:48 +00:00
{
"rose-pine/neovim",
name = "rose-pine",
priority = 1000,
init = function()
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme("rose-pine-main")
end,
},
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ... },
2024-03-18 13:53:10 +00:00
{ "EdenEast/nightfox.nvim", priority = 1000 },
}