Files
nvim-config/lua/plugins/themes.lua
T

29 lines
503 B
Lua
Raw Normal View History

2025-01-18 00:15:54 -06:00
return {
{
"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
},
2025-01-20 23:28:39 -06:00
{
"olimorris/onedarkpro.nvim",
lazy = false,
priority = 1000,
config = function()
require("onedarkpro").setup()
end
}
2025-01-18 00:15:54 -06:00
}