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

44 lines
840 B
Lua
Raw Normal View History

2025-01-18 00:15:54 -06:00
return {
2026-06-30 15:08:52 -05:00
{
dir = "C:/Users/sfree/Repositories/lavender-dimmed.nvim",
name = "lavender-dimmed",
lazy = false,
priority = 1000,
config = function()
require("lavender-dimmed").setup()
vim.cmd.colorscheme("lavender-dimmed")
end,
},
2025-01-18 00:15:54 -06:00
{
"projekt0n/github-nvim-theme",
name = "github-theme",
lazy = false,
priority = 1000,
config = function()
2026-06-30 15:08:52 -05:00
require("github-theme").setup()
2025-01-18 00:15:54 -06:00
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-28 21:00:22 -06:00
},
{
"notken12/base46-colors",
lazy = false,
priority = 1000,
2025-01-20 23:28:39 -06:00
}
2025-01-18 00:15:54 -06:00
}