2025-01-18 00:15:54 -06:00
|
|
|
return {
|
2026-07-19 11:15:18 -05:00
|
|
|
{
|
|
|
|
|
"StevanFreeborn/lavender-dimmed.nvim",
|
|
|
|
|
name = "lavender-dimmed",
|
|
|
|
|
lazy = false,
|
|
|
|
|
priority = 1000,
|
|
|
|
|
config = function()
|
|
|
|
|
require("lavender-dimmed").setup()
|
|
|
|
|
vim.cmd.colorscheme("lavender-dimmed")
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"projekt0n/github-nvim-theme",
|
|
|
|
|
name = "github-theme",
|
|
|
|
|
lazy = false,
|
|
|
|
|
priority = 1000,
|
|
|
|
|
config = function()
|
|
|
|
|
require("github-theme").setup()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"catppuccin/nvim",
|
|
|
|
|
name = "catppuccin",
|
|
|
|
|
lazy = false,
|
|
|
|
|
priority = 1000,
|
|
|
|
|
config = function()
|
|
|
|
|
require("catppuccin").setup()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"olimorris/onedarkpro.nvim",
|
|
|
|
|
lazy = false,
|
|
|
|
|
priority = 1000,
|
|
|
|
|
config = function()
|
|
|
|
|
require("onedarkpro").setup()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"notken12/base46-colors",
|
|
|
|
|
lazy = false,
|
|
|
|
|
priority = 1000,
|
|
|
|
|
},
|
2025-01-18 00:15:54 -06:00
|
|
|
}
|