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

34 lines
581 B
Lua

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
},
{
"olimorris/onedarkpro.nvim",
lazy = false,
priority = 1000,
config = function()
require("onedarkpro").setup()
end
},
{
"notken12/base46-colors",
lazy = false,
priority = 1000,
}
}