fix: Corrected the overzealous exclusion of files with git or

`node_modules` in their names and instead excluding files in those
directories specifically
This commit is contained in:
Finch 2024-05-07 15:13:51 -05:00
parent 96cc292a2a
commit fcec9d54ec

View File

@ -100,8 +100,8 @@ return {
no_ignore = false, no_ignore = false,
hidden = true, hidden = true,
file_ignore_patterns = { file_ignore_patterns = {
'.git', '.git/',
'.node_modules', '.node_modules/',
}, },
}) })
end, end,