Update init.lua

Fix Stylua Check error.
pull/1265/head
Denis Telnov 4 months ago committed by GitHub
parent dbd6c80cb7
commit bc32d1131e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -664,7 +664,7 @@ require('lazy').setup({
filetype_overrides = {},
-- filetypes_denylist: filetypes to not illuminate, this overrides filetypes_allowlist
filetypes_denylist = {
'dirbuf',
'dirbuf',
'dirvish',
'fugitive',
},
@ -699,7 +699,9 @@ require('lazy').setup({
-- should_enable: a callback that overrides all other settings to
-- enable/disable illumination. This will be called a lot so don't do
-- anything expensive in it.
should_enable = function(bufnr) return true end,
should_enable = function(bufnr)
return true
end,
-- case_insensitive_regex: sets regex case sensitivity
case_insensitive_regex = false,
}

Loading…
Cancel
Save