breaking change: moved highlight stuff to base16 repo | rewrote whole base16 repo

Just run :PackerSync, check https://nvchad.github.io/config/Custom%20config#local-themes and the section below it for newly added features
This commit is contained in:
siduck
2022-05-03 00:13:38 +05:30
parent e557dc3af9
commit 02d545cd42
10 changed files with 12 additions and 304 deletions

View File

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