prevent colorizer to attach to lazy window (#2929)

This commit is contained in:
Bruno Krugel
2024-07-16 06:02:34 +05:30
committed by GitHub
parent bf477a6bba
commit 67378a8352
+7 -1
View File
@@ -189,7 +189,13 @@ return {
{
"NvChad/nvim-colorizer.lua",
event = "User FilePost",
opts = { user_default_options = { names = false } },
opts = {
user_default_options = { names = false }
filetypes = {
"*",
"!lazy",
},
},
config = function(_, opts)
require("colorizer").setup(opts)