d16ffabcfd
first commit of Refactor handle require errors move config from other places to proper files don't create a pseudo config function for no reason https://github.com/siduck76/NvChad/pull/156#issuecomment-881453546
14 lines
193 B
Lua
14 lines
193 B
Lua
local colorizer
|
|
if
|
|
not pcall(
|
|
function()
|
|
colorizer = require("colorizer")
|
|
end
|
|
)
|
|
then
|
|
return
|
|
end
|
|
|
|
colorizer.setup()
|
|
vim.cmd("ColorizerReloadAllBuffers")
|