feat: pick theme with telescope

This commit is contained in:
Stevan Freeborn
2025-01-18 00:15:54 -06:00
parent 38905222ca
commit 075e78c9ce
11 changed files with 97 additions and 45 deletions
+20
View File
@@ -0,0 +1,20 @@
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
},
}