BREAKING CHANGE: Colorschemes other than main(rose-pine) are not loaded so they will not be available.
24 lines
591 B
Lua
24 lines
591 B
Lua
return {
|
|
--Gruvbox colorscheme
|
|
{ "ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ..., lazy = true },
|
|
|
|
--tokyonight colorscheme
|
|
{ "folke/tokyonight.nvim", priority = 1000, lazy = true },
|
|
|
|
-- lunar-vim colorschemes
|
|
{ "lunarvim/colorschemes", priority = 1000, lazy = true },
|
|
|
|
-- kanagawa
|
|
{ "rebelot/kanagawa.nvim", priority = 1000, lazy = true },
|
|
|
|
-- latte, frappe, macchiato, mocha
|
|
{ "catppuccin/catppuccin", priority = 1000, lazy = true },
|
|
|
|
--Rosepine (Primeagen)
|
|
{
|
|
'rose-pine/neovim',
|
|
name = 'rose-pine',
|
|
priority = 1000,
|
|
lazy = false
|
|
}
|
|
}
|