feat: add theme toggle btn | update theme plugin path

This commit is contained in:
siduck
2022-05-06 20:14:57 +05:30
parent 0601876ab6
commit b9a1038acd
5 changed files with 27 additions and 5 deletions

View File

@@ -18,10 +18,10 @@ local plugins = {
["NvChad/base46"] = {
after = "packer.nvim",
config = function()
local ok, base16 = pcall(require, "base16")
local ok, base46 = pcall(require, "base46")
if ok then
base16.load_theme()
base46.load_theme()
end
end,
},