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

@ -19,6 +19,7 @@ M.options = {
M.ui = {
hl_override = {},
changed_themes = {},
colors = "", -- path of your file that contains colors
theme = "onedark", -- default theme
transparency = false,

View file

@ -1,7 +1,5 @@
local M = {}
local cmd = vim.cmd
M.close_buffer = function(force)
if vim.bo.buftype == "terminal" then
vim.api.nvim_win_hide(0)
@ -69,43 +67,6 @@ M.packer_lazy_load = function(plugin, timer)
end
end
-- Highlights functions
-- Define bg color
-- @param group Group
-- @param color Color
M.bg = function(group, col)
cmd("hi " .. group .. " guibg=" .. col)
end
-- Define fg color
-- @param group Group
-- @param color Color
M.fg = function(group, col)
cmd("hi " .. group .. " guifg=" .. col)
end
-- Define bg and fg color
-- @param group Group
-- @param fgcol Fg Color
-- @param bgcol Bg Color
M.fg_bg = function(group, fgcol, bgcol)
cmd("hi " .. group .. " guifg=" .. fgcol .. " guibg=" .. bgcol)
end
M.load_ifExists = function(module)
if #module ~= 0 then
if type(module) == "string" then
require(module)
-- file[1] = module & file[2] = function
elseif type(module) == "table" then
require(module[1])[module[2]]()
end
end
end
-- remove plugins defined in chadrc
M.remove_default_plugins = function(plugins)
local removals = require("core.utils").load_config().plugins.remove or {}